PublishEvent constructor

PublishEvent({
  1. int? id,
  2. String? title,
  3. String? subTitle,
  4. String? thumbnail,
  5. String? venueName,
  6. double? lat,
  7. double? lng,
  8. String? street1,
  9. String? state,
  10. String? city,
  11. String? country,
  12. String? zip,
  13. String? flagCode,
  14. int? startDateTime,
  15. int? stopDateTime,
  16. String? utcModifier,
  17. String? colorCode,
  18. String? colorCode2,
  19. String? catName,
  20. int? isLiked,
  21. int? isBooked,
  22. int? numberLikedUsers,
  23. int? numberBookedUsers,
  24. List<BookedUsers>? bookedUsers,
})

Implementation

PublishEvent({
  this.id,
  this.title,
  this.subTitle,
  this.thumbnail,
  this.venueName,
  this.lat,
  this.lng,
  this.street1,
  this.state,
  this.city,
  this.country,
  this.zip,
  this.flagCode,
  this.startDateTime,
  this.stopDateTime,
  this.utcModifier,
  this.colorCode,
  this.colorCode2,
  this.catName,
  this.isLiked,
  this.isBooked,
  this.numberLikedUsers,
  this.numberBookedUsers,
  this.bookedUsers,
});