mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
set default value to nullable field
This commit is contained in:
parent
6c9f9a4d19
commit
9ce6c6e01a
3 changed files with 4 additions and 4 deletions
|
@ -53,8 +53,8 @@ class Node extends HiveObject with Keyable {
|
|||
@HiveField(4)
|
||||
bool? useSSL;
|
||||
|
||||
@HiveField(5)
|
||||
bool? trusted;
|
||||
@HiveField(5, defaultValue: false)
|
||||
bool trusted;
|
||||
|
||||
bool get isSSL => useSSL ?? false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue