Currency parse fix

This commit is contained in:
julian 2022-10-02 18:49:12 -06:00
parent 807379f112
commit fd0070411d

View file

@ -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?,