AppointmentModel constructor
AppointmentModel({})
Returns a new AppointmentModel instance.
Implementation
AppointmentModel({
required this.id,
required this.serviceId,
required this.employeeId,
required this.customerId,
required this.from,
required this.to,
required this.color,
required this.eventName,
required this.status,
this.recurrenceId,
});