HandlingCutoffTime.fromJson constructor

HandlingCutoffTime.fromJson(
  1. Map json_
)

Implementation

HandlingCutoffTime.fromJson(core.Map json_)
  : this(
      country: json_['country'] as core.String?,
      cutoffTime: json_['cutoffTime'] as core.String?,
      cutoffTimezone: json_['cutoffTimezone'] as core.String?,
      disableDeliveryAfterCutoff:
          json_['disableDeliveryAfterCutoff'] as core.bool?,
    );