AechoSettings constructor

const AechoSettings({
  1. bool enabled = false,
  2. String decays = '0.5',
  3. String delays = '1000',
  4. double in_gain = 0.6,
  5. double out_gain = 0.3,
})

Creates an AechoSettings with the given parameter values.

Each parameter defaults to its ffmpeg default; the effect stays inactive until enabled is set to true.

Implementation

const AechoSettings({
  this.enabled = false,
  this.decays = '0.5',
  this.delays = '1000',
  this.in_gain = 0.6,
  this.out_gain = 0.3,
});