Invitation constructor

Invitation({
  1. String? courseId,
  2. String? id,
  3. String? role,
  4. String? userId,
})

Implementation

Invitation({
  this.courseId,
  this.id,
  this.role,
  this.userId,
});