open method
Opens the Knot API session with the provided configuration
.
This method invokes the open
method on the native platform, passing the
configuration as a JSON object.
Implementation
@override
Future<void> open(KnotConfiguration configuration) async {
await methodChannel.invokeMethod('open', configuration.toJson());
}