WebView constructor
WebView({})
Implementation
WebView({
Object? url,
Object? html,
this.width,
this.height,
String? name,
Object? visible,
}) : url = normalizeNullableExpression(url),
html = normalizeNullableExpression(html),
assert(
(url == null) != (html == null),
'WebView requires exactly one of url or html.',
),
super(name: name, visible: _normalizeVisibility(visible));