up method

void up()

Move up in the list of rows.

Implementation

void up() {
  final vp = verticalPosition;
  if (vp != null) {
    if (vp == 0) {
      verticalPosition = null;
    } else {
      verticalPosition = vp - 1;
    }
  }
  showCurrent();
}