scrollLeft property

int scrollLeft

Implementation

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

Implementation

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