persistentConnection property

  1. @override
bool get persistentConnection
override

Whether the connection is persistent (keep-alive).

Implementation

@override
bool get persistentConnection => (super.noSuchMethod(
      Invocation.getter(#persistentConnection),
      returnValue: false,
    ) as bool);
  1. @override
set persistentConnection (bool? _persistentConnection)
override

Whether the connection is persistent (keep-alive).

Implementation

@override
set persistentConnection(bool? _persistentConnection) => super.noSuchMethod(
      Invocation.setter(
        #persistentConnection,
        _persistentConnection,
      ),
      returnValueForMissingStub: null,
    );