DeliveryAreaPostalCodeRange.fromJson constructor

DeliveryAreaPostalCodeRange.fromJson(
  1. 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,
      );