scrollTop property

dynamic get scrollTop

Implementation

/* double | NaN */ dynamic get scrollTop =>
      js_util.getProperty(this, 'scrollTop');
set scrollTop (dynamic newValue)

Implementation

set scrollTop(/* double | NaN */ dynamic newValue) {
  js_util.setProperty(this, 'scrollTop', newValue);
}