TaskAggregate constructor

const TaskAggregate({
  1. required StatusAggregate status,
  2. required TypeAggregate type,
})

Aggregation of a set of tasks for each property relevant to statistics.

Implementation

const factory TaskAggregate({
  /// Aggregation by status.
  required StatusAggregate status,

  /// Aggregation by type.
  required TypeAggregate type,
}) = _TaskAggregate;