followRedirects property

bool followRedirects

Whether the client should follow redirects while resolving this request.

Defaults to true.

Implementation

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

Implementation

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