PlanEntity constructor

PlanEntity({
  1. required String id,
  2. required int importance,
  3. required String name,
  4. required String imagePath,
  5. required Features features,
  6. required String price,
  7. required String currency,
  8. required String typePlan,
})

Implementation

PlanEntity({
  required this.id,
  required this.importance,
  required this.name,
  required this.imagePath,
  required this.features,
  required this.price,
  required this.currency,
  required this.typePlan,
});