ParticipantRequest constructor

ParticipantRequest({
  1. required String userId,
  2. ParticipantRole? role,
  3. DateTime? createdAt,
})

Implementation

ParticipantRequest({
  required this.userId,
  this.role,
  this.createdAt,
});