mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +00:00
Currency parse fix
This commit is contained in:
parent
807379f112
commit
fd0070411d
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ class Currency {
|
|||
return Currency(
|
||||
ticker: json["ticker"] as String,
|
||||
name: json["name"] as String,
|
||||
network: json["network"] as String,
|
||||
network: json["network"] as String? ?? "",
|
||||
image: json["image"] as String,
|
||||
hasExternalId: json["hasExternalId"] as bool,
|
||||
externalId: json["externalId"] as String?,
|
||||
|
|
Loading…
Reference in a new issue