persistentConnection property

  1. @override
bool get persistentConnection
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);
  1. @override
set persistentConnection (bool? _persistentConnection)
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,
    );