PopPopAudio constructor

const PopPopAudio({
  1. required String defaultFilePath,
  2. bool loggingEnabled = false,
})

Creates a PopPopAudio interface.

Should be extended upon to provide your own audio player implemention with your preferred audio player package.

Implementation

const PopPopAudio({
  required this.defaultFilePath,
  this.loggingEnabled = false,
});