RedirectInfo abstract class
Redirect information.
abstract class RedirectInfo {
/**
* Returns the status code used for the redirect.
*/
int get statusCode;
/**
* Returns the method used for the redirect.
*/
String get method;
/**
* Returns the location for the redirect.
*/
Uri get location;
}