GoogleCloudChannelV1ListSkuGroupBillableSkusResponse.fromJson constructor

GoogleCloudChannelV1ListSkuGroupBillableSkusResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1ListSkuGroupBillableSkusResponse.fromJson(core.Map json_)
    : this(
        billableSkus: json_.containsKey('billableSkus')
            ? (json_['billableSkus'] as core.List)
                .map((value) => GoogleCloudChannelV1BillableSku.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );