pushWithoutNavBar<T> function

  1. @optionalTypeArgs
Future<T?> pushWithoutNavBar<T>(
  1. BuildContext context,
  2. Route<T> route
)

Implementation

@optionalTypeArgs
Future<T?> pushWithoutNavBar<T>(BuildContext context, Route<T> route) =>
    Navigator.of(context, rootNavigator: true).push<T>(route);