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]) {
  return widget._state.pop(result);
}