TaskLabel constructor

const TaskLabel(
  1. String name, {
  2. required String taskId,
  3. required int fileCount,
  4. List<TaskLabel> children = const [],
})

Implementation

const TaskLabel(
  this.name, {
  required this.taskId,
  required this.fileCount,
  this.children = const [],
});