pop<T> method

Future<T?> pop<T>([
  1. T? data
])

Implementation

Future<T?> pop<T>([T? data]) async {
  await navigation.maybePop(data);
  return null;
}