maxRedirects property
override
Set this property to the maximum number of redirects to follow
when followRedirects is true. If this number is exceeded
an error event will be added with a RedirectException.
The default value is 5.
Implementation
@override
int get maxRedirects => (super.noSuchMethod(
Invocation.getter(#maxRedirects),
returnValue: 0,
) as int);
override
Set this property to the maximum number of redirects to follow
when followRedirects is true. If this number is exceeded
an error event will be added with a RedirectException.
The default value is 5.
Implementation
@override
set maxRedirects(int? _maxRedirects) => super.noSuchMethod(
Invocation.setter(
#maxRedirects,
_maxRedirects,
),
returnValueForMissingStub: null,
);