maxRedirects property

int get maxRedirects

The maximum number of redirects to follow when followRedirects is true.

If this number is exceeded the BaseResponse future will signal a RedirectException. Defaults to 5.

Implementation

int get maxRedirects => _maxRedirects;
set maxRedirects (int value)

Implementation

set maxRedirects(int value) {
  _checkFinalized();
  _maxRedirects = value;
}