getScrollY method

  1. @override
Future<int> getScrollY()
override

Return the vertical scroll position of this view.

Scroll position is measured from top.

Implementation

@override
Future<int> getScrollY() =>
    _channel.invokeMethod<int>('getScrollY').then((int? result) => result!);