persistentConnection property
override
Whether the connection is persistent (keep-alive).
Implementation
@override
bool get persistentConnection => (super.noSuchMethod(
Invocation.getter(#persistentConnection),
returnValue: false,
) as bool);
override
Whether the connection is persistent (keep-alive).
Implementation
@override
set persistentConnection(bool? _persistentConnection) => super.noSuchMethod(
Invocation.setter(
#persistentConnection,
_persistentConnection,
),
returnValueForMissingStub: null,
);