pop<T> method
void
pop<T>({
- T? result,
Implementation
void pop<T>({T? result}) async {
if (canPop()) {
return Navigator.of(this).pop<T>(result);
}
return null;
}
void pop<T>({T? result}) async {
if (canPop()) {
return Navigator.of(this).pop<T>(result);
}
return null;
}