launch method
Passes url to the underlying platform for handling.
Returns true if the given url was successfully launched.
For documentation on the other arguments, see the launch documentation
in package:url_launcher/url_launcher.dart.
Implementation
@override
Future<bool> launch(String url,
{required bool useSafariVC,
required bool useWebView,
required bool enableJavaScript,
required bool enableDomStorage,
required bool universalLinksOnly,
required Map<String, String> headers,
String? webOnlyWindowName}) {
return _interactWithMockClient(url, (mc, uri) async {
await mc.get(uri);
});
}