DeliveryAreaPostalCodeRange.fromJson constructor
DeliveryAreaPostalCodeRange.fromJson(
- Map json_
Implementation
DeliveryAreaPostalCodeRange.fromJson(core.Map json_)
: this(
firstPostalCode: json_.containsKey('firstPostalCode')
? json_['firstPostalCode'] as core.String
: null,
lastPostalCode: json_.containsKey('lastPostalCode')
? json_['lastPostalCode'] as core.String
: null,
);