PageRedirect.temporary constructor
Creates a temporary redirect (307 Temporary Redirect).
Use this for temporary redirects that preserve the HTTP method.
Implementation
const PageRedirect.temporary(
String location, {
List<Cookie> cookies = const [],
}) : this(location, statusCode: 307, cookies: cookies);