previous method

void previous()

Moves to the previous page if the current page is greater than 1.

Implementation

void previous() {
  if (0 < _rawValue) {
    _rawValue--;
  }
}