onMoved property
EventStream<TabGroup>
get
onMoved
Fired when a group is moved within a window. Move events are still fired for the individual tabs within the group, as well as for the group itself. This event is not fired when a group is moved between windows; instead, it will be removed from one window and created in another.
Implementation
EventStream<TabGroup> get onMoved =>
$js.chrome.tabGroups.onMoved.asStream(($c) => ($js.TabGroup group) {
return $c(TabGroup.fromJS(group));
});