NewAppointmentModel constructor

NewAppointmentModel({
  1. required int? employeeId,
  2. required int? serviceId,
  3. required int? customerId,
  4. required DateTime? from,
  5. required DateTime? to,
  6. NewRecurrence? recurrence,
})

Returns a new NewAppointmentModel instance.

Implementation

NewAppointmentModel({
  required this.employeeId,
  required this.serviceId,
  required this.customerId,
  required this.from,
  required this.to,
  this.recurrence,
});