VParticipant constructor

VParticipant({
  1. required Role role,
  2. required MailTo email,
  3. String? name,
})

Implementation

VParticipant({
  required this.role,
  required this.email,
  this.name,
});