CreateMilestone constructor

CreateMilestone(
  1. String? title,
  2. {String? state,
  3. String? description,
  4. DateTime? dueOn}
)

Implementation

CreateMilestone(
  this.title, {
  this.state,
  this.description,
  this.dueOn,
});