SoundPlayerWidget constructor

SoundPlayerWidget({
  1. required String filePath,
  2. required String fileName,
  3. required double duration,
  4. Codec codec = Codec.amrNB,
})

Implementation

SoundPlayerWidget({
  required this.filePath,
  required this.fileName,
  required this.duration,
  this.codec: Codec.amrNB,
});