PlanLevel constructor

const PlanLevel({
  1. required String title,
  2. required String description,
  3. required Map<String, PlanDay> days,
  4. Map<String, dynamic>? rawJSON,
})

Implementation

const PlanLevel({
  required this.title,
  required this.description,
  required this.days,
  this.rawJSON,
});