GoogleCloudApigeeV1ListAppGroupsResponse.fromJson constructor

GoogleCloudApigeeV1ListAppGroupsResponse.fromJson(
  1. Map json_
)

Implementation

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