mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
Fix parsing .yml files to nodes (#543)
This commit is contained in:
parent
3c4ba6da53
commit
e011ab3e88
2 changed files with 7 additions and 8 deletions
|
@ -29,10 +29,9 @@ class Node extends HiveObject with Keyable {
|
|||
|
||||
Node.fromMap(Map<String, Object?> map)
|
||||
: uriRaw = map['uri'] as String? ?? '',
|
||||
login = map['login'] as String,
|
||||
password = map['password'] as String,
|
||||
typeRaw = map['typeRaw'] as int,
|
||||
useSSL = map['useSSL'] as bool;
|
||||
login = map['login'] as String?,
|
||||
password = map['password'] as String?,
|
||||
useSSL = map['useSSL'] as bool?;
|
||||
|
||||
static const typeId = 1;
|
||||
static const boxName = 'Nodes';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue