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