currentOptions property

BaseContainerOptions get currentOptions

Implementation

BaseContainerOptions get currentOptions {
  if (optionsHistory.isNotEmpty) {
    return optionsHistory.last;
  } else {
    throw (Exception('Screenview stack is currently empty'));
  }
}