groupId property

int? get groupId

The ID of the group to add the tabs to. If not specified, a new group will be created.

Implementation

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

Implementation

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