toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final businessType = this.businessType;
final places = this.places;
final regionCode = this.regionCode;
return {
'businessType': ?businessType,
'places': ?places,
'regionCode': ?regionCode,
};
}