connect method

  1. @override
Future<Socket> connect(
  1. SocketConnectionPoint connectionPoint
)
override

Implementation

@override
Future<Socket> connect(SocketConnectionPoint connectionPoint) async {
  Socket connection = await _connect(connectionPoint.address, connectionPoint.port);
  _connection.add(connection);
  return connection;
}