maybePop<T extends Object> method

Future<bool> maybePop<T extends Object>([
  1. T? result
])

Implementation

Future<bool> maybePop<T extends Object>([T? result]) {
  return Navigator.of(this).maybePop(result);
}