startConnect static method
Like connect, but returns a Future that completes with a ConnectionTask that can be cancelled if the Socket is no longer needed.
Implementation
static Future<ConnectionTask<Socket>> startConnect(
host,
int port, {
sourceAddress,
int sourcePort = 0,
}) {
final IOOverrides? overrides = IOOverrides.current;
if (overrides == null) {
return Socket._startConnect(
host,
port,
sourceAddress: sourceAddress,
sourcePort: sourcePort,
);
}
return overrides.socketStartConnect(
host,
port,
sourceAddress: sourceAddress,
sourcePort: sourcePort,
);
}