WebViewInterface constructor
WebViewInterface({
- required String url,
- required ValueChanged<
bool> onBottomReached, - String? notSupportedMessage,
Implementation
factory WebViewInterface({
required String url,
required ValueChanged<bool> onBottomReached,
/// Message to display when web view is not supported
String? notSupportedMessage,
}) {
if (kIsWeb) {
return WebViewWeb();
} else {
return WebViewMobile(url: url, onBottomReached: onBottomReached);
}
}