close method

Future<bool?> close()

Closes WebView

Implementation

Future<bool?> close() async {
  _channel.setMethodCallHandler(null);
  return await _channel.invokeMethod<bool?>('closeWebView');
}