Participant constructor

Participant({
  1. DateTime? joinDtTime,
  2. String? leaveDtTime,
  3. bool? isAdmin,
  4. bool? status,
  5. int? firstResponseTime,
  6. int? averageResponseTime,
  7. dynamic evaluatedBy,
  8. dynamic evaluatedFormId,
  9. dynamic evaluationStatus,
  10. dynamic location,
  11. String? id,
  12. String? name,
  13. String? role,
  14. dynamic customId,
})

Implementation

Participant({
  this.joinDtTime,
  this.leaveDtTime,
  this.isAdmin,
  this.status,
  this.firstResponseTime,
  this.averageResponseTime,
  this.evaluatedBy,
  this.evaluatedFormId,
  this.evaluationStatus,
  this.location,
  this.id,
  this.name,
  this.role,
  this.customId,
});