persistentConnection property

  1. @override
bool get persistentConnection
override

The requested persistent connection state.

The default value is true.

Implementation

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

The requested persistent connection state.

The default value is true.

Implementation

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