toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
if (caip19 != null) {
_json['caip19'] = caip19;
}
if (symbol != null) {
_json['symbol'] = symbol;
}
if (decimals != null) {
_json['decimals'] = decimals;
}
if (logoUrl != null) {
_json['logoUrl'] = logoUrl;
}
if (name != null) {
_json['name'] = name;
}
return _json;
}