Redirect class
Response that redirects to the URI specified by body
Constructors
-
Redirect(Uri body, {dynamic statusCode = HttpStatus.movedPermanently, List<Cookie>? cookies})
-
-
Redirect.found(dynamic body, {dynamic statusCode = HttpStatus.movedTemporarily, List<Cookie>? cookies})
-
Performs 'moved temporarily' (status code: 302) redirect
factory
-
Redirect.permanentRedirect(dynamic body, {dynamic statusCode = 308, List<Cookie>? cookies})
-
Performs 'permanent redirect' (status code: 308) redirect
factory
-
Redirect.seeOther(dynamic body, {dynamic statusCode = HttpStatus.seeOther, List<Cookie>? cookies})
-
Performs 'see other' (status code: 303) redirect
factory
-
Redirect.temporaryRedirect(dynamic body, {dynamic statusCode = HttpStatus.temporaryRedirect, List<Cookie>? cookies})
-
Performs 'temporary redirect' (status code: 307) redirect
factory
Properties
-
body
↔ Uri?
-
Body of the response
getter/setter pairinherited
-
cookies
→ List<Cookie>
-
Cookies
finalinherited
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
Headers
finalinherited
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
-
statusCode
↔ int
-
Status code of the response
getter/setter pairinherited