isRedirectionCode property
bool
get
isRedirectionCode
Checks if the status code represents a redirection (3xx)
Implementation
bool get isRedirectionCode => this != null && this! >= 300 && this! < 400;
Checks if the status code represents a redirection (3xx)
bool get isRedirectionCode => this != null && this! >= 300 && this! < 400;