PlanDetails constructor

PlanDetails({
  1. String? description,
  2. Map<String, String>? categoryDescriptions,
  3. String? lastModifiedDateTime,
  4. String? sharedWith,
  5. String? previewType,
})

Creates a new PlanDetails instance.

Implementation

PlanDetails({
  this.description,
  this.categoryDescriptions,
  this.lastModifiedDateTime,
  this.sharedWith,
  this.previewType,
});