YouTubeResult constructor

YouTubeResult({
  1. required List<String> artists,
  2. required String title,
  3. required String? album,
  4. required int sDuration,
  5. required String srcUrl,
  6. required String dlUrl,
  7. required Source source,
})

Creates a new YouTubeResult.

Implementation

YouTubeResult({
  required this.artists,
  required this.title,
  required this.album,
  required this.sDuration,
  required this.srcUrl,
  required this.dlUrl,
  required this.source,
});