GoogleCloudApigeeV1ListAppGroupsResponse.fromJson constructor
GoogleCloudApigeeV1ListAppGroupsResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ListAppGroupsResponse.fromJson(core.Map json_)
: this(
appGroups: (json_['appGroups'] as core.List?)
?.map((value) => GoogleCloudApigeeV1AppGroup.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
totalSize: json_['totalSize'] as core.int?,
);