Redirect.permanent constructor
const
Redirect.permanent(
- String location
A 308: same method, and remember this permanently.
A browser that caches it may never ask again, so a permanent redirect pointing somewhere wrong is expensive to take back.
Implementation
const Redirect.permanent(String location) : this._(308, location);