pop<T extends Object?> method

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

Pops the top-most route.

Implementation

Future<bool> pop<T extends Object?>([T? result]) async {
  return _navigatorState.maybePop(result);
}