persistentConnection property

bool get persistentConnection

Whether a persistent connection should be maintained with the server.

Defaults to true.

Implementation

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

Implementation

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