persistentConnection property
override
The requested persistent connection state.
The default value is true.
Implementation
@override
bool get persistentConnection => (super.noSuchMethod(
Invocation.getter(#persistentConnection),
returnValue: false,
) as bool);
override
The requested persistent connection state.
The default value is true.
Implementation
@override
set persistentConnection(bool? _persistentConnection) => super.noSuchMethod(
Invocation.setter(
#persistentConnection,
_persistentConnection,
),
returnValueForMissingStub: null,
);