GoogleCloudPaymentsResellerSubscriptionV1ListProductsResponse.fromJson constructor
GoogleCloudPaymentsResellerSubscriptionV1ListProductsResponse.fromJson(
- Map json_
Implementation
GoogleCloudPaymentsResellerSubscriptionV1ListProductsResponse.fromJson(
core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
products: (json_['products'] as core.List?)
?.map((value) =>
GoogleCloudPaymentsResellerSubscriptionV1Product.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);