EventListScreen constructor

const EventListScreen(
  1. {Key? key,
  2. required List<EventListData> totalEventList,
  3. bool isFromViewAll = false,
  4. int? genreId,
  5. int? artistId,
  6. String? eventDate,
  7. bool isToday = false,
  8. bool isTomorrow = false,
  9. bool isWeekEnd = false}
)

Implementation

const EventListScreen({
  super.key,
  required this.totalEventList,
  this.isFromViewAll = false,
  this.genreId,
  this.artistId,
  this.eventDate,
  this.isToday = false,
  this.isTomorrow = false,
  this.isWeekEnd = false,
});