scrollingOffsetY property

double? scrollingOffsetY

Implementation

double? get scrollingOffsetY => _scrollingOffsetY;
void scrollingOffsetY=(double? value)

Implementation

set scrollingOffsetY(double? value) {
  if (value == null) return;
  if (_scrollingOffsetY != value) {
    _scrollingOffsetY = value;
    markNeedsPaint();
  }
}