DeliveryAreaPostalCodeRange.fromJson constructor

DeliveryAreaPostalCodeRange.fromJson(
  1. Map json_
)

Implementation

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