toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final localCutoffTime = this.localCutoffTime;
  final noDeliveryPostCutoff = this.noDeliveryPostCutoff;
  final storeCloseOffsetHours = this.storeCloseOffsetHours;
  return {
    'localCutoffTime': ?localCutoffTime,
    'noDeliveryPostCutoff': ?noDeliveryPostCutoff,
    'storeCloseOffsetHours': ?storeCloseOffsetHours,
  };
}