toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final actorUserId = this.actorUserId;
final gradeChangeType = this.gradeChangeType;
final gradeTimestamp = this.gradeTimestamp;
final maxPoints = this.maxPoints;
final pointsEarned = this.pointsEarned;
return {
'actorUserId': ?actorUserId,
'gradeChangeType': ?gradeChangeType,
'gradeTimestamp': ?gradeTimestamp,
'maxPoints': ?maxPoints,
'pointsEarned': ?pointsEarned,
};
}