getWebView function

WebViewInterface getWebView({
  1. required String url,
  2. required ValueChanged<bool> onBottomReached,
  3. String? notSupportedMessage,
})

Implementation

WebViewInterface getWebView(
    {required String url,
    required ValueChanged<bool> onBottomReached,
    String? notSupportedMessage}) {
  return WebViewInterface(url: url, onBottomReached: onBottomReached);
}