Skip to main content

UserLesson

class UserLesson {
// must be present, as it is known at the time of creation
final String lessonId;

final int? totalViews;
final int? totalPlays;
final int? totalCompletions;
final DateTime? lastViewed;
final DateTime? lastPlayed;
final DateTime? lastCompleted;
}