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 name = this.name;
final regionCode = this.regionCode;
return {
'countryCode': ?countryCode,
'countryDartId': ?countryDartId,
'dartId': ?dartId,
'kind': ?kind,
'name': ?name,
'regionCode': ?regionCode,
};
}