persistentConnection property

bool persistentConnection
inherited

Whether a persistent connection should be maintained with the server.

Defaults to true.

Implementation

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

Implementation

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