WebView constructor
const
WebView({
- Key? key,
- required WebViewController controller,
- bool ignorePointerEvents = false,
Creates a WebView widget.
The controller parameter must not be null and should be initialized
before the widget is displayed.
Implementation
const WebView({
super.key,
required this.controller,
this.ignorePointerEvents = false,
});