Plan constructor

Plan({
  1. PlanLinks? links,
  2. DateTime? createdAt,
  3. String? id,
  4. String? name,
  5. String? type,
  6. DateTime? updatedAt,
})

Returns a new Plan instance.

Implementation

Plan({
  this.links,
  this.createdAt,
  this.id,
  this.name,
  this.type,
  this.updatedAt,
});