OnUpdatedEvent class
Fired when a tab is updated.
class OnUpdatedEvent { final int tabId; /** * Lists the changes to the state of the tab that was updated. */ final Map changeInfo; /** * Gives the state of the tab that was updated. */ final Tab tab; OnUpdatedEvent(this.tabId, this.changeInfo, this.tab); }
Constructors
new OnUpdatedEvent(int tabId, Map changeInfo, Tab tab) #
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
OnUpdatedEvent(this.tabId, this.changeInfo, this.tab);