persistentConnection property

  1. @override
bool persistentConnection
override

Whether the connection is persistent (keep-alive).

Implementation

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

Whether the connection is persistent (keep-alive).

Implementation

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