isRedirect property
bool
get
isRedirect
Whether the response is a redirect (3xx).
Implementation
bool get isRedirect => status >= 300 && status < 400;
Whether the response is a redirect (3xx).
bool get isRedirect => status >= 300 && status < 400;