maxRedirects property

int maxRedirects

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)

Implementation

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