redirect abstract method
Future redirect(Respond with a redirect to location
.
The URI in location
should be absolute, but there are no checks to enforce that.
By default the HTTP status code HttpStatus.MOVED_TEMPORARILY
(302
) is used for the redirect, but an alternative one can be specified using the status
argument.
This method will also call close
, and the returned future is the future returned by close
.
Source
Future redirect(Uri location, {int status: HttpStatus.MOVED_TEMPORARILY});
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-io/HttpResponse/redirect.html