YoutubeMetaData constructor

const YoutubeMetaData({
  1. String videoId = '',
  2. String title = '',
  3. String author = '',
  4. Duration duration = const Duration(),
})

Creates YoutubeMetaData for Youtube Video.

Implementation

const YoutubeMetaData({
  this.videoId = '',
  this.title = '',
  this.author = '',
  this.duration = const Duration(),
});