toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final address = this.address;
  final business = this.business;
  final expectedDeliveryDaysRegion = this.expectedDeliveryDaysRegion;
  return {
    'address': ?address,
    'business': ?business,
    'expectedDeliveryDaysRegion': ?expectedDeliveryDaysRegion,
  };
}