GoogleCloudApigeeV1ListRatePlansResponse.fromJson constructor
GoogleCloudApigeeV1ListRatePlansResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ListRatePlansResponse.fromJson(core.Map json_)
: this(
nextStartKey: json_['nextStartKey'] as core.String?,
ratePlans: (json_['ratePlans'] as core.List?)
?.map(
(value) => GoogleCloudApigeeV1RatePlan.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);