setToEnd method
Puts the controller into its final "completed" state.
Implementation
@override
void setToEnd() {
_currentIndex = children.length - 1;
children.forEach((c) => c.setToEnd());
}
Puts the controller into its final "completed" state.
@override
void setToEnd() {
_currentIndex = children.length - 1;
children.forEach((c) => c.setToEnd());
}