setToEnd method

  1. @override
void setToEnd()
override

Jumps this controller straight to its end.

Implementation

@override
void setToEnd() {
  _currentIndex = children.length - 1;

  for (final child in children) {
    child.setToEnd();
  }
}