GoogleCloudChannelV1QueryEligibleBillingAccountsResponse.fromJson constructor

GoogleCloudChannelV1QueryEligibleBillingAccountsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1QueryEligibleBillingAccountsResponse.fromJson(
  core.Map json_,
) : this(
      skuPurchaseGroups: (json_['skuPurchaseGroups'] as core.List?)
          ?.map(
            (value) => GoogleCloudChannelV1SkuPurchaseGroup.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );