socketioClient static method

dynamic socketioClient(
  1. Socket io
)

Get the standalone socketio client

This should be used when you want standalone socketio client

You should configure your socketio client before passing to this method

Configuring can mean adding autoConnect, baseUrl, ExtraHeaders, transport, logging, etc

Implementation

static socketioClient(IO.Socket io) {
  return FlutterFeathersjsSocketio(io);
}