groupId property

int? get groupId

The ID of the group that the tabs are in, or tabGroups.TAB_GROUP_ID_NONE for ungrouped tabs.

Implementation

int? get groupId => _wrapped.groupId;
set groupId (int? v)

Implementation

set groupId(int? v) {
  _wrapped.groupId = v;
}