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