setToEnd method
override
Jumps this controller straight to its end.
Implementation
@override
void setToEnd() {
_currentIndex = children.length - 1;
for (final child in children) {
child.setToEnd();
}
}
Jumps this controller straight to its end.
@override
void setToEnd() {
_currentIndex = children.length - 1;
for (final child in children) {
child.setToEnd();
}
}