isFinalEvent property

bool? get isFinalEvent

True if this is the final event that will be sent to this handler.

Implementation

bool? get isFinalEvent => _wrapped.isFinalEvent;
set isFinalEvent (bool? v)

Implementation

set isFinalEvent(bool? v) {
  _wrapped.isFinalEvent = v;
}