followRedirects property
Whether the client should follow redirects while resolving this request.
Defaults to true.
Implementation
bool get followRedirects => _followRedirects;
Implementation
set followRedirects(bool value) {
_checkFinalized();
_followRedirects = value;
}