AudioTrack constructor

AudioTrack(
  1. Object id, {
  2. required String title,
  3. required String artist,
  4. required Duration duration,
  5. String? networkUrl,
  6. String? filePath,
})

Implementation

AudioTrack(
  this.id, {
  required this.title,
  required this.artist,
  required this.duration,
  this.networkUrl,
  this.filePath,
});