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