toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final countryCode = this.countryCode;
final countryDartId = this.countryDartId;
final dartId = this.dartId;
final kind = this.kind;
final metroCode = this.metroCode;
final metroDmaId = this.metroDmaId;
final name = this.name;
final regionCode = this.regionCode;
final regionDartId = this.regionDartId;
return {
'countryCode': ?countryCode,
'countryDartId': ?countryDartId,
'dartId': ?dartId,
'kind': ?kind,
'metroCode': ?metroCode,
'metroDmaId': ?metroDmaId,
'name': ?name,
'regionCode': ?regionCode,
'regionDartId': ?regionDartId,
};
}