EventItem constructor

const EventItem({
  1. dynamic key,
  2. required dynamic event,
  3. dynamic margin,
  4. dynamic onTapEventItem(
    1. String
    )?,
  5. bool isShowRsvp = true,
  6. bool isShowSpaceName = false,
})

Implementation

const EventItem({
  super.key,
  required this.event,
  this.margin,
  this.onTapEventItem,
  this.isShowRsvp = true,
  this.isShowSpaceName = false,
});