GuardResult.redirect constructor

GuardResult.redirect(
  1. String path
)

Redirects navigation to a different path.

Implementation

factory GuardResult.redirect(String path) =>
    GuardResult._(isAllowed: false, redirectPath: path);