VideoMetadata constructor Null safety

VideoMetadata(
  1. {required VideoFull video,
  2. List<Comment>? comments,
  3. List<Video>? recommendations}
)

Implementation

VideoMetadata({
  required this.video,
  this.comments,
  this.recommendations,
});