NiceEventParticipants constructor

const NiceEventParticipants({
  1. Key? key,
  2. required List<NiceParticipant> participants,
  3. void onApprove(
    1. String id
    )?,
  4. void onRemove(
    1. String id
    )?,
  5. int? capacity,
  6. String title = 'Participants',
})

Implementation

const NiceEventParticipants({
  super.key,
  required this.participants,
  this.onApprove,
  this.onRemove,
  this.capacity,
  this.title = 'Participants',
});