Plan constructor

Plan({
  1. String? id,
  2. String? title,
  3. String? owner,
  4. String? createdDateTime,
  5. String? lastModifiedDateTime,
  6. PlanDetails? details,
})

Creates a new Plan instance.

Implementation

Plan({
  this.id,
  this.title,
  this.owner,
  this.createdDateTime,
  this.lastModifiedDateTime,
  this.details,
});