Teacher constructor

Teacher({
  1. String? courseId,
  2. UserProfile? profile,
  3. String? userId,
})

Implementation

Teacher({
  this.courseId,
  this.profile,
  this.userId,
});