mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-22 02:24:30 +00:00
make vars final
This commit is contained in:
parent
20aba661af
commit
1e11fdd6fe
1 changed files with 4 additions and 4 deletions
|
@ -12,10 +12,10 @@ class JsonRPC {
|
||||||
this.useSSL = false,
|
this.useSSL = false,
|
||||||
this.connectionTimeout = const Duration(seconds: 60),
|
this.connectionTimeout = const Duration(seconds: 60),
|
||||||
});
|
});
|
||||||
bool useSSL;
|
final bool useSSL;
|
||||||
String host;
|
final String host;
|
||||||
int port;
|
final int port;
|
||||||
Duration connectionTimeout;
|
final Duration connectionTimeout;
|
||||||
|
|
||||||
Future<dynamic> request(String jsonRpcRequest) async {
|
Future<dynamic> request(String jsonRpcRequest) async {
|
||||||
Socket? socket;
|
Socket? socket;
|
||||||
|
|
Loading…
Reference in a new issue