toJson method

Map<String, dynamic> toJson()

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,
  };
}