currentIndex property

int currentIndex

Current index of SwipableStack.

Implementation

int get currentIndex => _currentIndex;
void currentIndex=(int newValue)

Implementation

set currentIndex(int newValue) {
  if (_currentIndex == newValue) {
    return;
  }
  _currentIndex = newValue;
  notifyListeners();
}