isFinalEvent property

bool? isFinalEvent

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

Implementation

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

Implementation

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