go method
Implementation
Future<void> go({required Uri uri}) async {
if (is_init == false) {
_notInitialized();
}
validateUri(uri);
if (is_mobile) {
await webview_mobile_controller.loadRequest(uri);
}
if (is_desktop) {
await webview_desktop_controller.launch(uri.toString());
}
}