isFinished property

  1. @override
bool get isFinished
override

Whether or not this controller has finished.

Implementation

@override
bool get isFinished =>
    _currentIndex == children.length - 1 && //
    children[_currentIndex].isFinished;