AudioData constructor

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

Implementation

AudioData({required this.playerId, this.url = "",  this.title= "",  this.albumTitle= "",  this.artist= "",  this.albumimageUrl= "",required this.volume ,required this.skipInterval,required this.enable_equalizer,required this.frequecy, this.isLocalFile,this.speed = 1.0,this.pan = 0.0,this.pitch=0.0});