DeleteOutboundConnectionResponse.fromJson constructor
Implementation
factory DeleteOutboundConnectionResponse.fromJson(Map<String, dynamic> json) {
return DeleteOutboundConnectionResponse(
connection: json['Connection'] != null
? OutboundConnection.fromJson(
json['Connection'] as Map<String, dynamic>)
: null,
);
}