bool followRedirects

Whether the client should follow redirects while resolving this request. Defaults to true.

Source

bool get followRedirects => _followRedirects;
void followRedirects=(bool value)

Source

set followRedirects(bool value) {
  _checkFinalized();
  _followRedirects = value;
}