DescribeOutboundConnectionsResponse.fromJson constructor
Implementation
factory DescribeOutboundConnectionsResponse.fromJson(
Map<String, dynamic> json) {
return DescribeOutboundConnectionsResponse(
connections: (json['Connections'] as List?)
?.whereNotNull()
.map((e) => OutboundConnection.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['NextToken'] as String?,
);
}