close method

Future<void> close()

Closes the ChromeSafariBrowser instance.

Implementation

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