backStep method

void backStep()

向后一步

Implementation

void backStep() {
  final int backIndex = currentIndex <= 0 ? 0 : currentIndex - 1;
  setCurrentIndex(backIndex);
}