ExchangeSearchResults.fromJson constructor

ExchangeSearchResults.fromJson(
  1. Map<String, dynamic> json
)

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'], '');