Booking constructor

Booking({
  1. String id = "",
  2. String profileId = "",
  3. String profileName = "",
  4. String profileImgUrl = "",
  5. String placeId = "",
  6. String eventId = "",
  7. int date = 0,
  8. BookingStatus bookingStatus = BookingStatus.notDefined,
  9. String orderId = "",
})

Implementation

Booking({
    this.id = "",
    this.profileId = "",
    this.profileName = "",
    this.profileImgUrl = "",
    this.placeId = "",
    this.eventId = "",
    this.date = 0,
    this.bookingStatus = BookingStatus.notDefined,
    this.orderId = ""
  });