PlanModel constructor

PlanModel({
  1. String? id,
  2. String? name,
  3. required String identifier,
  4. int? interval,
  5. String? intervalType,
  6. String? createdAt,
  7. String? updatedAt,
  8. List<PlanPrice>? prices,
  9. List<PlanFeature>? features,
})

Implementation

PlanModel({
  this.id,
  this.name,
  required this.identifier,
  this.interval,
  this.intervalType,
  this.createdAt,
  this.updatedAt,
  this.prices,
  this.features,
});