GoogleCloudChannelV1BillingAccountPurchaseInfo.fromJson constructor

GoogleCloudChannelV1BillingAccountPurchaseInfo.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1BillingAccountPurchaseInfo.fromJson(core.Map json_)
  : this(
      billingAccount:
          json_.containsKey('billingAccount')
              ? GoogleCloudChannelV1BillingAccount.fromJson(
                json_['billingAccount']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );