scrollTop property

double get scrollTop

Implementation

double get scrollTop {
  if (scrollControllerY != null && scrollControllerY!.hasClients) {
    return scrollControllerY!.position.pixels;
  }

  return 0.0;
}
set scrollTop (double value)

Implementation

set scrollTop(double value) {
  _scrollTo(y: value);
}