PerLearnerCourseLastAccessData constructor

PerLearnerCourseLastAccessData({
  1. String? courseId,
  2. String? courseName,
  3. String? blockId,
  4. String? blockDisplayName,
  5. double? courseGrade,
  6. double? courseProgress,
  7. String? lastAccessed,
})

Returns a new PerLearnerCourseLastAccessData instance.

Implementation

PerLearnerCourseLastAccessData({
  this.courseId,
  this.courseName,
  this.blockId,
  this.blockDisplayName,
  this.courseGrade,
  this.courseProgress,
  this.lastAccessed,
});