connectSocket method
Connects to a non-secure socket at the specified address
and port
.
Implementation
Future<Socket> connectSocket(InternetAddress address, int port) =>
Socket.connect(address, port);
Connects to a non-secure socket at the specified address
and port
.
Future<Socket> connectSocket(InternetAddress address, int port) =>
Socket.connect(address, port);