scrollEnabled method
Returns the scrollEnabled of the currently loaded page.
Implementation
Future<void> scrollEnabled(bool scrollEnabled) {
if (Platform.isIOS) {
return _webViewPlatformController.scrollEnabled(scrollEnabled);
}
return Future.value();
}