GoogleCloudApigeeV1ListOrganizationsResponse.fromJson constructor
GoogleCloudApigeeV1ListOrganizationsResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ListOrganizationsResponse.fromJson(core.Map json_)
: this(
organizations: json_.containsKey('organizations')
? (json_['organizations'] as core.List)
.map((value) =>
GoogleCloudApigeeV1OrganizationProjectMapping.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);