persistentConnection property
Gets and sets the persistent connection state. The initial value of this property is the persistent connection state from the request.
Implementation
@override
bool get persistentConnection =>
(super.noSuchMethod(
Invocation.getter(#persistentConnection),
returnValue: false,
returnValueForMissingStub: false,
)
as bool);
Gets and sets the persistent connection state. The initial value of this property is the persistent connection state from the request.
Implementation
@override
set persistentConnection(bool? value) => super.noSuchMethod(
Invocation.setter(#persistentConnection, value),
returnValueForMissingStub: null,
);