toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final businessDayConfig = this.businessDayConfig;
  final cutoffTime = this.cutoffTime;
  final handlingDays = this.handlingDays;
  final name = this.name;
  final shippingAddress = this.shippingAddress;
  return {
    'businessDayConfig': ?businessDayConfig,
    'cutoffTime': ?cutoffTime,
    'handlingDays': ?handlingDays,
    'name': ?name,
    'shippingAddress': ?shippingAddress,
  };
}