Response.found(location, {body, Map<String, String> headers, Encoding encoding, Map<String, Object> context})

Constructs a 302 Found response.

This indicates that the requested resource has moved temporarily to a new URI. location is that URI; it can be either a String or a Uri. It's automatically set as the Location header in headers.

body is the response body. It may be either a String, a Stream>, or null to indicate no body. If it's a String, encoding is used to encode it to a Stream>. It defaults to UTF-8.

If encoding is passed, the "encoding" field of the Content-Type header in headers will be set appropriately. If there is no existing Content-Type header, it will be set to "application/octet-stream".

Source

Response.found(location, {body, Map<String, String> headers,
    Encoding encoding, Map<String, Object> context})
    : this._redirect(302, location, body, headers, encoding,
        context: context);