ExchangeRate.fromJson constructor
Implementation
ExchangeRate.fromJson(Map<String, dynamic> json)
: this.name = Convert.toStr(json['name'], ''),
this.unit = Convert.toStr(json['unit'], ''),
this.value = Convert.toDouble(json['value'], 0),
this.type = Convert.toStr(json['type'], '');