TaskRequest constructor

TaskRequest({
  1. String? title,
  2. String? description,
  3. LocationRequest? location,
  4. TaskType? type,
  5. TaskFrequency? frequency,
  6. DateTime? idealDate,
  7. TaskIdealDateCompletionWhen? idealDateCompletion,
  8. List<int>? categories,
})

Implementation

TaskRequest({
  this.title,
  this.description,
  this.location,
  this.type,
  this.frequency,
  this.idealDate,
  this.idealDateCompletion,
  this.categories,
});