mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-21 22:58:49 +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(
|
return Currency(
|
||||||
ticker: json["ticker"] as String,
|
ticker: json["ticker"] as String,
|
||||||
name: json["name"] as String,
|
name: json["name"] as String,
|
||||||
network: json["network"] as String,
|
network: json["network"] as String? ?? "",
|
||||||
image: json["image"] as String,
|
image: json["image"] as String,
|
||||||
hasExternalId: json["hasExternalId"] as bool,
|
hasExternalId: json["hasExternalId"] as bool,
|
||||||
externalId: json["externalId"] as String?,
|
externalId: json["externalId"] as String?,
|
||||||
|
|
Loading…
Reference in a new issue