maxRedirects property
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;
Implementation
set maxRedirects(int value) {
_checkFinalized();
_maxRedirects = value;
}