Task constructor

const Task({
  1. required String name,
  2. TMetaData? metaData,
  3. List<String>? issueIds,
  4. List<String>? prdIds,
  5. List<String>? mockupIds,
  6. List<String>? prototypeIds,
})

Implementation

const Task({
  required super.name,
  super.metaData,
  this.issueIds,
  this.prdIds,
  this.mockupIds,
  this.prototypeIds,
});