back method
Implementation
void back([Object? result]) {
if (isKeyboardOpened) {
hideKeyboard;
afterDelay(function: () => navigator.pop(result));
} else {
navigator.pop(result);
}
}
void back([Object? result]) {
if (isKeyboardOpened) {
hideKeyboard;
afterDelay(function: () => navigator.pop(result));
} else {
navigator.pop(result);
}
}