VideosWatchedSubSection constructor

VideosWatchedSubSection({
  1. required String displayName,
  2. required String id,
  3. required String totalWatch,
  4. List<VideoBlock> videos = const [],
})

Returns a new VideosWatchedSubSection instance.

Implementation

VideosWatchedSubSection({
  required this.displayName,
  required this.id,
  required this.totalWatch,
  this.videos = const [],
});