persistentConnection property

  1. @override
bool get persistentConnection
override

Whether the connection is persistent (keep-alive).

Implementation

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

Whether the connection is persistent (keep-alive).

Implementation

@override
set persistentConnection(bool value) => httpHeaders.persistentConnection = value;