Line data Source code
1 : class RedirectRecord { 2 1 : RedirectRecord(this.statusCode, this.method, this.location); 3 : 4 : /// Returns the status code used for the redirect. 5 : final int statusCode; 6 : 7 : /// Returns the method used for the redirect. 8 : final String method; 9 : 10 : ///Returns the location for the redirect. 11 : final Uri location; 12 : }