scrollTop property
Implementation
int get scrollTop => JS<num>('num', '#.scrollTop', this).round();
Implementation
set scrollTop(int value) {
JS("void", "#.scrollTop = #", this, value.round());
}
int get scrollTop => JS<num>('num', '#.scrollTop', this).round();
set scrollTop(int value) {
JS("void", "#.scrollTop = #", this, value.round());
}