isTimedOut property

bool isTimedOut
inherited

Indicates whether this message has been timed out.

Implementation

bool get isTimedOut => _timedOut;
  1. @internal
void isTimedOut=(bool value)
inherited

Implementation

@internal
set isTimedOut(final bool value) {
  _timedOut = value;
  _eventBus?.fire(CoapTimedOutEvent(this));
  timedOutHook?.call();
}