Dart Documentationchrome.tabsTabsOnMovedEvent

TabsOnMovedEvent class

Fired when a tab is moved within a window. Only one move event is fired, representing the tab the user directly moved. Move events are not fired for the other tabs that must move in response. This event is not fired when a tab is moved between windows. For that, see onDetached.

class TabsOnMovedEvent {
 final int tabId;

 final Map moveInfo;

 TabsOnMovedEvent(this.tabId, this.moveInfo);
}

Constructors

new TabsOnMovedEvent(int tabId, Map moveInfo) #

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
TabsOnMovedEvent(this.tabId, this.moveInfo);

Properties

final Map moveInfo #

final Map moveInfo

final int tabId #

final int tabId