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