DeliveryConfig.fromJson constructor

DeliveryConfig.fromJson(
  1. Map json_
)

Implementation

DeliveryConfig.fromJson(core.Map json_)
    : this(
        deliveryRequirement: json_.containsKey('deliveryRequirement')
            ? json_['deliveryRequirement'] as core.String
            : null,
      );