serverSocketBind method
Asynchronously returns a ServerSocket that connects to the given address and port when successful.
When this override is installed, this functions overrides the behavior of ServerSocket.bind(...)
.
Implementation
Future<ServerSocket> serverSocketBind(address, int port, {int backlog = 0, bool v6Only = false, bool shared = false}) { return ServerSocket._bind(address, port, backlog: backlog, v6Only: v6Only, shared: shared); }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-io/IOOverrides/serverSocketBind.html