DeleteOutboundConnectionResponse.fromJson constructor

DeleteOutboundConnectionResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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