GradeHistory constructor

GradeHistory({
  1. String? actorUserId,
  2. String? gradeChangeType,
  3. String? gradeTimestamp,
  4. double? maxPoints,
  5. double? pointsEarned,
})

Implementation

GradeHistory({
  this.actorUserId,
  this.gradeChangeType,
  this.gradeTimestamp,
  this.maxPoints,
  this.pointsEarned,
});