scrollLeft 属性

int scrollTop

实现

int get scrollLeft => JS<num>('num', '#.scrollLeft', this).round();
void scrollLeft=(int value)

实现

set scrollLeft(int value) {
  JS("void", "#.scrollLeft = #", this, value.round());
}