movePrevious method

bool movePrevious()

Implementation

bool movePrevious() {
  if (_current == null)
    _current = query(QueryDirection.reverse, iterable.start);
  else
    _current = nextQuery(QueryDirection.reverse);
  return true;
}