persistentConnection property

bool persistentConnection

Whether a persistent connection should be maintained with the server.

Defaults to true.

Implementation

bool get persistentConnection => _persistentConnection;
void persistentConnection=(bool value)

Implementation

set persistentConnection(bool value) {
  _checkFinalized();
  _persistentConnection = value;
}