connectionGone property

bool get connectionGone

set when the connection was gone before the relay ended the request

Implementation

bool get connectionGone => _connectionGone;
set connectionGone (bool value)

Implementation

set connectionGone(bool value) {
  if (_connectionGone == value) return;
  _connectionGone = value;
  onOutcomeChanged?.call();
}