toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final currencyCode = this.currencyCode;
final endDate = this.endDate;
final id = this.id;
final name = this.name;
final rateInMicros = this.rateInMicros;
final startDate = this.startDate;
final tieredRates = this.tieredRates;
final type = this.type;
final unitOfMeasure = this.unitOfMeasure;
return {
'currencyCode': ?currencyCode,
'endDate': ?endDate,
'id': ?id,
'name': ?name,
'rateInMicros': ?rateInMicros,
'startDate': ?startDate,
'tieredRates': ?tieredRates,
'type': ?type,
'unitOfMeasure': ?unitOfMeasure,
};
}