group property

TaskGroup get group

The task group this tasks belongs to. See TaskGroup for a predefined set of available groups. Defaults to undefined meaning that the task doesn't belong to any special group.

Implementation

_i3.TaskGroup get group => _i5.getProperty(
      this,
      'group',
    );
set group (TaskGroup value)

Implementation

set group(_i3.TaskGroup value) {
  _i5.setProperty(
    this,
    'group',
    value,
  );
}