maxRedirects property

int maxRedirects
inherited

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

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

Implementation

int get maxRedirects => _maxRedirects;
void maxRedirects=(int value)
inherited

Implementation

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