open method
void
open()
Implementation
void open() {
InAppWebView(
initialUrlRequest: URLRequest(url: WebUri("https://flutter.dev")),
initialSettings: InAppWebViewSettings(
javaScriptEnabled: true,
cacheEnabled: true,
supportZoom: true,
),
);
}