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