eliminateCurrent property

int get eliminateCurrent

Implementation

int get eliminateCurrent {
  if (screenViewHistory.isNotEmpty) {
    return screenViewHistory.length - 1;
  } else {
    throw (Exception('Screenview stack is currently empty'));
  }
}