ParticipantInfoModel constructor

ParticipantInfoModel({
  1. String? userId,
  2. String? userName,
  3. String? fullName,
  4. String? avatar,
})

Implementation

ParticipantInfoModel({
  this.userId,
  this.userName,
  this.fullName,
  this.avatar,
});