Line constructor

Line({
  1. required Header header,
  2. required List<Appointment> appointments,
})

Implementation

Line({
  required this.header,
  required this.appointments,
});