You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to run the code inside the isolate I get 2 bugs
If my code includes the line disableServiceTypeValidation(true); I am getting the following errors
'package:flutter/src/services/platform_channel.dart':Failed assertion: line 542 pos 7:'_binaryMessenger != null || BindingBase.debugBindingType() != null':Cannotset the method call handler before the binary messenger has been initialized. This happens when you call setMethodCallHandler() before the WidgetsFlutterBinding has been initialized. You can fix this by either calling WidgetsFlutterBinding.ensureInitialized() before this or by passing a custom BinaryMessenger instance to MethodChannel().
And when I search for service await startDiscovery(serviceType, ipLookupType: IpLookupType.any); I am not getting any results.
Scenario
Use the plugin in my own application via Flutter dependency
Platform
Android
The text was updated successfully, but these errors were encountered:
Description
When I try to run the code inside the isolate I get 2 bugs
If my code includes the line
disableServiceTypeValidation(true);
I am getting the following errorsAnd when I search for service
await startDiscovery(serviceType, ipLookupType: IpLookupType.any);
I am not getting any results.Scenario
Use the plugin in my own application via Flutter dependency
Platform
Android
The text was updated successfully, but these errors were encountered: