onBack method

void onBack(
  1. Event event
)

Implementation

void onBack(Event event) {
  event.handled = true;
  String? pages = fromMap(event.parameters, 'until');
  if (!isNullOrEmpty(pages)) NavigationManager().back(pages);
}