EventNotificationDialog constructor

EventNotificationDialog({
  1. Key? key,
  2. required EventNotificationModel? eventData,
  3. String? event,
  4. String? invitedPeopleCount,
  5. String? timeAndDate,
  6. String? userName,
  7. bool showMembersCount = false,
})

Implementation

EventNotificationDialog(
    {Key? key,
    required this.eventData,
    this.event,
    this.invitedPeopleCount,
    this.timeAndDate,
    this.userName,
    this.showMembersCount = false})
    : super(key: key);