popWithKey<T> method

bool popWithKey<T>([
  1. T? result
])

Implementation

bool popWithKey<T>([T? result]) {
  _navigatorKey.currentState?.pop(result);
  return true;
}