Booking constructor

Booking({
  1. String? locationId,
  2. String? id,
  3. String? createdAt,
  4. BookingStatus? status,
  5. String? updatedAt,
  6. String? customerId,
  7. String? startAt,
  8. int? version,
  9. BookingBookingSource? source,
  10. bool? allDay,
  11. List<AppointmentSegment>? appointmentSegments,
  12. BookingCreatorDetails? creatorDetails,
  13. String? customerNote,
  14. BusinessAppointmentSettingsBookingLocationType? locationType,
  15. String? sellerNote,
  16. int? transitionTimeMinutes,
})

Implementation

Booking({
  this.locationId, this.id, this.createdAt, this.status,
this.updatedAt, this.customerId, this.startAt,
this.version, this.source, this.allDay, this.appointmentSegments,
  this.creatorDetails, this.customerNote, this.locationType,
this.sellerNote, this.transitionTimeMinutes
});