ExpectedParticipantData constructor

ExpectedParticipantData({
  1. required ParticipantAttribute? attribute,
  2. AssignedTo? assignedTo,
})

Implementation

ExpectedParticipantData({required this.attribute, AssignedTo? assignedTo}) {
  this.assignedTo = assignedTo ?? AssignedTo.all();
}