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