close method

Future<void> close()

Closes the in-app browser view.

This can be used to manually close the authentication screen.

Implementation

Future<void> close() async {
  _log('Closing browser manually');
  await closeInAppWebView();
}