previous method

void previous()

Implementation

void previous() {
  if (_index > 0) {
    _index--;
  }
}