canScrollVertically method

Future<bool> canScrollVertically()

Returns true if the webpage can scroll vertically, otherwise false.

Implementation

Future<bool> canScrollVertically() async {
  Map<String, dynamic> args = <String, dynamic>{};
  return await _channel.invokeMethod('canScrollVertically', args);
}