GoogleCloudChannelV1TransferableOffer.fromJson constructor

GoogleCloudChannelV1TransferableOffer.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1TransferableOffer.fromJson(core.Map json_)
  : this(
      offer:
          json_.containsKey('offer')
              ? GoogleCloudChannelV1Offer.fromJson(
                json_['offer'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      priceReferenceId: json_['priceReferenceId'] as core.String?,
    );