goBack method

String? goBack()

Implementation

String? goBack() {
  if (!canGoBack()) return null;
  _historyIndex--;
  currentView = history[_historyIndex];
  if (breadcrumbs.length > 1) breadcrumbs.removeLast();
  return currentView;
}