EventArgs class abstract

An abstract representation of the (optional) arguments provided to handlers when an Event occurs.

This is intended to be extended with your own custom class, if you want to provide subscribers with some data relating to the Event. Alternatively, use one of the three supplied EventArgs derived classes: WhenWhy, Value or Values.

// example
class MyChangedValue extends EventArgs {
  int changedValue;
  MyChangedValue(this.changedValue);
}
Implementers

Constructors

EventArgs()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited