timedOut property

bool get timedOut

set when the request ended on its timeout instead of on the relays

Implementation

bool get timedOut => _timedOut;
set timedOut (bool value)

Implementation

set timedOut(bool value) {
  if (_timedOut == value) return;
  _timedOut = value;
  _refreshRelayOutcomes();
}