scrollTo method Null safety
Sets the WebView's content scroll position.
The parameters x
and y
specify the scroll position in WebView pixels.
Implementation
Future<void> scrollTo(int x, int y) {
return _webViewPlatformController.scrollTo(x, y);
}