serverSocketBind method

  1. @override
Future<ServerSocket> serverSocketBind(
  1. dynamic address,
  2. int port, {
  3. int backlog = 0,
  4. bool v6Only = false,
  5. bool shared = false,
})
override

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

@override
Future<ServerSocket> serverSocketBind(address, int port,
    {int backlog = 0, bool v6Only = false, bool shared = false}) {
  throw UnimplementedError('MemoryFsOverrides.serverSocketBind');
}