AudioItem constructor

AudioItem({
  1. required RequestSong url,
  2. String? title = "",
  3. String? albumTitle = "",
  4. String? artist = "",
  5. String? albumimageUrl = "",
  6. double? skipInterval = 10.0,
  7. double? volume = 100,
  8. bool? enable_equalizer = false,
  9. bool isLocalFile = false,
  10. double duration = 0.0,
  11. List<double>? frequecy,
  12. double speed = 1.0,
  13. double pan = 0.0,
  14. double pitch = 0.0,
})

Implementation

AudioItem({required this.url,  this.title = "",  this.albumTitle = "",  this.artist = "",  this.albumimageUrl = "",  this.skipInterval = 10.0,this.volume = 100,this.enable_equalizer = false,this.isLocalFile = false,this.duration = 0.0,this.frequecy,this.speed = 1.0,this.pan = 0.0,this.pitch = 0.0});