OnMenuItemActivatedEvent class
Called when the user selects a menu item
class OnMenuItemActivatedEvent {
/**
* ID of the engine receiving the event
*/
final String engineID;
/**
* Name of the MenuItem which was activated
*/
final String name;
OnMenuItemActivatedEvent(this.engineID, this.name);
}
Constructors
new OnMenuItemActivatedEvent(String engineID, String name) #
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
OnMenuItemActivatedEvent(this.engineID, this.name);