SyneriseDartMethodChannel class
Methods
-
configureChannel()
→ void
-
This function configures a method channel and sets a method call handler.
-
methodHandler(MethodCall call)
→ Future<void>
-
This function handles method calls for different modules based on the method name.
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
toString()
→ String
-
A string representation of this object.
inherited
Constants
-
channelName
→ const String
-
This variable is used to identify the method channel that is being set up and configured in the
configureChannel() function. The same value is also used in the platform-specific code to
establish communication with the Flutter app through this method channel.