TaskPatch constructor

TaskPatch({
  1. String? archivedAt,
  2. String? category,
  3. String? description,
  4. DateTime? dueBy,
  5. String? identificationNumber,
  6. String? name,
  7. String? priority,
  8. DateTime? scheduledAt,
  9. List<String>? tags,
})

Returns a new TaskPatch instance.

Implementation

TaskPatch({
  this.archivedAt,
  this.category,
  this.description,
  this.dueBy,
  this.identificationNumber,
  this.name,
  this.priority,
  this.scheduledAt,
  this.tags,
});