BookingDetail constructor

BookingDetail(
  1. {int? id,
  2. String? bookingNumber,
  3. String? evenImage,
  4. String? eventName,
  5. String? eventAddress,
  6. DateTime? startDate,
  7. String? startTime,
  8. String? endTime,
  9. int? userId,
  10. String? fullName,
  11. String? email,
  12. int? contactNumber,
  13. String? dateTime,
  14. List<Ticket>? tickets,
  15. String? quantity,
  16. String? price,
  17. String? subtotal,
  18. int? discount,
  19. String? taxAmount,
  20. List<TaxData>? taxes,
  21. String? totalPrice,
  22. String? status,
  23. String? paymentStatus,
  24. String? paymentType,
  25. dynamic couponData,
  26. String? createdAt,
  27. String? updatedAt,
  28. String? eventStatus}
)

Implementation

BookingDetail({
  this.id,
  this.bookingNumber,
  this.evenImage,
  this.eventName,
  this.eventAddress,
  this.startDate,
  this.startTime,
  this.endTime,
  this.userId,
  this.fullName,
  this.email,
  this.contactNumber,
  this.dateTime,
  this.tickets,
  this.quantity,
  this.price,
  this.subtotal,
  this.discount,
  this.taxAmount,
  this.taxes,
  this.totalPrice,
  this.status,
  this.paymentStatus,
  this.paymentType,
  this.couponData,
  this.createdAt,
  this.updatedAt,
  this.eventStatus,
});