BookingList constructor

BookingList(
  1. {int? bookingId,
  2. String? evenImage,
  3. String? eventName,
  4. String? eventAddress,
  5. DateTime? startDate,
  6. String? startTime,
  7. String? endTime,
  8. int? userId,
  9. String? eventStatus}
)

Implementation

BookingList(
    {this.bookingId,
    this.evenImage,
    this.eventName,
    this.eventAddress,
    this.startDate,
    this.startTime,
    this.endTime,
    this.userId,
    this.eventStatus});