RelatedSong constructor

RelatedSong({
  1. required String title,
  2. required String artists,
  3. required String videoId,
  4. String? duration,
  5. String? albumArt,
  6. String? audioUrl,
  7. bool isOriginal = false,
})

Implementation

RelatedSong({
  required this.title,
  required this.artists,
  required this.videoId,
  this.duration,
  this.albumArt,
  this.audioUrl,
  this.isOriginal = false,
});