persistentConnection property

  1. @override
bool get persistentConnection
override

Whether the connection is persistent (keep-alive).

Implementation

@override
bool get persistentConnection => _headers.persistentConnection;
  1. @override
set persistentConnection (bool persistentConnection)
override

Whether the connection is persistent (keep-alive).

Implementation

@override
set persistentConnection(bool persistentConnection) {
  _headers.persistentConnection = persistentConnection;
}