dispose method

  1. @override
Future<void> dispose()

Disposes a web authentication session.

Supported Platforms/Implementations:

  • iOS

Implementation

@override
Future<void> dispose() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await _channel.invokeMethod("dispose", args);
}