FastAudio constructor

const FastAudio({
  1. Key? key,
  2. required String url,
  3. required dynamic updateState(
    1. dynamic ()
    ),
  4. bool showVelocityButton = true,
  5. bool animatePlayerButton = true,
  6. bool showProgressBar = true,
  7. bool isFile = false,
  8. bool stopWhenDispose = false,
})

Implementation

const FastAudio({
  super.key,
  required this.url,
  required this.updateState,
  this.showVelocityButton = true,
  this.animatePlayerButton = true,
  this.showProgressBar = true,
  this.isFile = false,
  this.stopWhenDispose = false,
});