Meal constructor

const Meal(
  1. int id,
  2. String name,
  3. List<String> notes,
  4. double? studentPrice,
  5. double? employeePrice,
  6. double? pupilPrice,
  7. double? othersPrice,
  8. String category,
)

Construct a new meal instance.

Implementation

const Meal(
  this.id,
  this.name,
  this.notes,
  this.studentPrice,
  this.employeePrice,
  this.pupilPrice,
  this.othersPrice,
  this.category,
);