restorablePushNamed static method

FutureOr<String?> restorablePushNamed(
  1. BuildContext? context, {
  2. required String fullName,
  3. Object? arguments,
})

Implementation

static FutureOr<String?> restorablePushNamed(BuildContext? context,
    {required String fullName, Object? arguments}) {
  final action = getActions(context);
  return action.restorablePushNamed(context, fullName);
}