Booking constructor
Booking({
- String? locationId,
- String? id,
- String? createdAt,
- BookingStatus? status,
- String? updatedAt,
- String? customerId,
- String? startAt,
- int? version,
- BookingBookingSource? source,
- bool? allDay,
- List<
AppointmentSegment> ? appointmentSegments, - BookingCreatorDetails? creatorDetails,
- String? customerNote,
- BusinessAppointmentSettingsBookingLocationType? locationType,
- String? sellerNote,
- 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
});