onBack method

void onBack(
  1. Event event
)

Implementation

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