toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final geoRegionType = this.geoRegionType;
final name = this.name;
final parentPlannableLocationId = this.parentPlannableLocationId;
final plannableLocationId = this.plannableLocationId;
final regionCode = this.regionCode;
return {
'displayName': ?displayName,
'geoRegionType': ?geoRegionType,
'name': ?name,
'parentPlannableLocationId': ?parentPlannableLocationId,
'plannableLocationId': ?plannableLocationId,
'regionCode': ?regionCode,
};
}