persistentConnection property

  1. @override
bool persistentConnection
override

Gets and sets the persistent connection state. The initial value of this property is the persistent connection state from the request.

Implementation

@override
bool get persistentConnection => origin.persistentConnection;
  1. @override
void persistentConnection=(bool persistentConnection)
override

Gets and sets the persistent connection state. The initial value of this property is the persistent connection state from the request.

Implementation

@override
void set persistentConnection(bool persistentConnection) {
  origin.persistentConnection = persistentConnection;
}