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.connectionTimeout = const Duration(seconds: 60),
|
||||
});
|
||||
bool useSSL;
|
||||
String host;
|
||||
int port;
|
||||
Duration connectionTimeout;
|
||||
final bool useSSL;
|
||||
final String host;
|
||||
final int port;
|
||||
final Duration connectionTimeout;
|
||||
|
||||
Future<dynamic> request(String jsonRpcRequest) async {
|
||||
Socket? socket;
|
||||
|
|
Loading…
Reference in a new issue