Wav constructor

Wav(
  1. List<Float64List> channels,
  2. int samplesPerSecond, [
  3. WavFormat format = WavFormat.pcm16bit
])

Constructs a Wav directly from audio data.

Implementation

Wav(
  this.channels,
  this.samplesPerSecond, [
  this.format = WavFormat.pcm16bit,
]);