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.
 
BroadcastEvent(String type):super(type, false);
 
 
Properties
final bool         bubbles #
        
        
bool get bubbles => _bubbles;
 
final bool         captures #
        
        
bool get captures => false;
 
        
EventDispatcher get currentTarget => _currentTarget;
 
 
final int         eventPhase #
        
        
int get eventPhase => _eventPhase;
 
        
bool get stopsImmediatePropagation => _stopsImmediatePropagation;
 
 
final bool         stopsPropagation #
        
        
bool get stopsPropagation => _stopsPropagation;
 
        
EventDispatcher get target => _target;
 
 
final String         type #
        
        
String get type => _type;
 
 
Methods
void stopImmediatePropagation() {
 _stopsPropagation = true;
 _stopsImmediatePropagation = true;
}
 
 
void stopPropagation() #
void stopPropagation() {
 _stopsPropagation = true;
}