startTcpBind method

Starts TCP bind.

Implementation

@override
WASIPreview2SocketOperation<WASIPreview2IpSocketAddress> startTcpBind(
  WASIPreview2IpSocketAddress localAddress,
) {
  return WASIPreview2SocketOperation<WASIPreview2IpSocketAddress>.completed(
    const WASIPreview2SocketResult<WASIPreview2IpSocketAddress>.error(
      'not-supported',
    ),
  );
}