DeliveryArea.fromJson constructor
DeliveryArea.fromJson(
- Map json_
Implementation
DeliveryArea.fromJson(core.Map json_)
: this(
countryCode: json_['countryCode'] as core.String?,
postalCodeRange: json_.containsKey('postalCodeRange')
? DeliveryAreaPostalCodeRange.fromJson(json_['postalCodeRange']
as core.Map<core.String, core.dynamic>)
: null,
regionCode: json_['regionCode'] as core.String?,
);