TrackInfo constructor

TrackInfo({
  1. required String identifier,
  2. required bool isSeekable,
  3. required String author,
  4. required int length,
  5. required bool isStream,
  6. required int position,
  7. required String title,
  8. String? uri,
  9. String? artworkUrl,
  10. String? isrc,
  11. required String sourceName,
})

Implementation

TrackInfo({
  required this.identifier,
  required this.isSeekable,
  required this.author,
  required this.length,
  required this.isStream,
  required this.position,
  required this.title,
  this.uri,
  this.artworkUrl,
  this.isrc,
  required this.sourceName,
});