scrollLeft method

dynamic scrollLeft(
  1. double left
)

从当前滑动到距离左边left的位置

Implementation

scrollLeft(double left) {
  _control.scrollLeft(left);
}