redirect method

  1. @override
Future redirect(
  1. Uri location, {
  2. int status = HttpStatus.movedTemporarily,
})
override

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.movedTemporarily (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.

Implementation

@override
Future redirect(Uri location, {int status = HttpStatus.movedTemporarily}) async {
  statusCode = status;
}