CollectionEvent class
class CollectionEvent implements Event { String _type; HipsterCollection collection; HipsterModel _model; CollectionEvent(this._type, this.collection, {model}) { _model = model; } String get type =>_type; HipsterModel get model => _model; }
Implements
Constructors
new CollectionEvent(String _type, HipsterCollection collection, [model]) #
CollectionEvent(this._type, this.collection, {model}) { _model = model; }
Properties
final Clipboard clipboardData #
inherited from Event
@domName Event.clipboardData
Clipboard get clipboardData;
HipsterCollection collection #
HipsterCollection collection;
final EventTarget currentTarget #
inherited from Event
@domName Event.currentTarget
EventTarget get currentTarget;
final bool defaultPrevented #
inherited from Event
@domName Event.defaultPrevented
bool get defaultPrevented;
final HipsterModel model #
HipsterModel get model => _model;
final EventTarget srcElement #
inherited from Event
@domName Event.srcElement
EventTarget get srcElement;
final String type #
@domName Event.type
docs inherited from Event
String get type =>_type;
Methods
void stopImmediatePropagation() #
inherited from Event
@domName Event.stopImmediatePropagation
void stopImmediatePropagation();
void stopPropagation() #
inherited from Event
@domName Event.stopPropagation
void stopPropagation();
void $dom_initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg) #
inherited from Event
@domName Event.initEvent
void $dom_initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg);