bool persistentConnection

Whether a persistent connection should be maintained with the server. Defaults to true.

Source

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

Source

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