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