CoinShort.fromJson constructor

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

Implementation

CoinShort.fromJson(Map<String, dynamic> json)
    : this.id = Convert.toStr(json['id'], ''),
      this.symbol = Convert.toStr(json['symbol'], ''),
      this.name = Convert.toStr(json['name'], ''),
      this.platforms = Convert.toMapOfStringStringN(json['platforms']);