ServiceStoreConfigCutoffConfig.fromJson constructor
ServiceStoreConfigCutoffConfig.fromJson(
- Map json_
Implementation
ServiceStoreConfigCutoffConfig.fromJson(core.Map json_)
: this(
localCutoffTime: json_.containsKey('localCutoffTime')
? ServiceStoreConfigCutoffConfigLocalCutoffTime.fromJson(
json_['localCutoffTime']
as core.Map<core.String, core.dynamic>)
: null,
noDeliveryPostCutoff: json_['noDeliveryPostCutoff'] as core.bool?,
storeCloseOffsetHours: json_['storeCloseOffsetHours'] as core.String?,
);