Topic constructor

Topic({
  1. String? courseId,
  2. String? name,
  3. String? topicId,
  4. String? updateTime,
})

Implementation

Topic({
  this.courseId,
  this.name,
  this.topicId,
  this.updateTime,
});