Dart DocumentationstagexlBroadcastEvent

BroadcastEvent class

class BroadcastEvent extends Event {
 BroadcastEvent(String type):super(type, false);
 bool get captures => false;
}

Extends

Event > BroadcastEvent

Subclasses

EnterFrameEvent, ExitFrameEvent, RenderEvent

Constructors

new BroadcastEvent(String type) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
BroadcastEvent(String type):super(type, false);

Properties

final bool bubbles #

inherited from Event
bool get bubbles => _bubbles;

final bool captures #

bool get captures => false;

final EventDispatcher currentTarget #

inherited from Event
EventDispatcher get currentTarget => _currentTarget;

final int eventPhase #

inherited from Event
int get eventPhase => _eventPhase;

final bool stopsImmediatePropagation #

inherited from Event
bool get stopsImmediatePropagation => _stopsImmediatePropagation;

final bool stopsPropagation #

inherited from Event
bool get stopsPropagation => _stopsPropagation;

final EventDispatcher target #

inherited from Event
EventDispatcher get target => _target;

final String type #

inherited from Event
String get type => _type;

Methods

void stopImmediatePropagation() #

inherited from Event
void stopImmediatePropagation() {
 _stopsPropagation = true;
 _stopsImmediatePropagation = true;
}

void stopPropagation() #

inherited from Event
void stopPropagation() {
 _stopsPropagation = true;
}