ExchangeSearchResults.fromJson constructor
Constructs an ExchangeSearchResults instance from a JSON map.
json
is the JSON map containing the exchange data.
Implementation
ExchangeSearchResults.fromJson(Map<String, dynamic> json)
: this.id = Convert.toStr(json['id'], ''),
this.name = Convert.toStr(json['name'], ''),
this.marketType = Convert.toStr(json['market_type'], ''),
this.thumb = Convert.toStr(json['thumb'], ''),
this.large = Convert.toStr(json['large'], '');