VideoWithCommentsList constructor Null safety

VideoWithCommentsList(
  1. {String? total,
  2. bool paginated = false,
  3. required List<VideoWithComments> videos}
)

Implementation

VideoWithCommentsList({
  this.total,
  this.paginated = false,
  required this.videos,
});