flutter_socket_plugin icon indicating copy to clipboard operation
flutter_socket_plugin copied to clipboard

iOS support - MissingPluginException (MissingPluginException(No implementation found for method create_socket on channel flutter_socket_plugin))

Open natheemy opened this issue 3 years ago • 0 comments

ios throwing below error

please investigate and give a support

Error

MissingPluginException (MissingPluginException(No implementation found for method create_socket on channel flutter_socket_plugin))

Code :

`flutterSocket = FlutterSocket();

await flutterSocket.createSocket(cameraIP, DATA_PORT, timeout: 20);

/// listen connect callback
flutterSocket.connectListener((data) {
  print("connect listener data:$data");
});`

natheemy avatar Oct 13 '22 05:10 natheemy