VideoFullList constructor Null safety

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

Implementation

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