close method

  1. @override
Future<void> close()

Closes the PlatformChromeSafariBrowser instance.

Officially Supported Platforms/Implementations:

  • Android
  • iOS

Implementation

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