ParticipantUsers constructor

ParticipantUsers({
  1. String? name,
  2. String? profilePicture,
  3. String? mobileEmail,
  4. dynamic userId,
})

Implementation

ParticipantUsers({
  this.name,
  this.profilePicture,
  this.mobileEmail,
  this.userId,
});