ListMirroringEndpointGroupAssociationsResponse.fromJson constructor

ListMirroringEndpointGroupAssociationsResponse.fromJson(
  1. Map json_
)

Implementation

ListMirroringEndpointGroupAssociationsResponse.fromJson(core.Map json_)
    : this(
        mirroringEndpointGroupAssociations:
            (json_['mirroringEndpointGroupAssociations'] as core.List?)
                ?.map((value) => MirroringEndpointGroupAssociation.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList(),
        nextPageToken: json_['nextPageToken'] as core.String?,
      );