EchoTap constructor

const EchoTap({
  1. required double delay,
  2. double gainL = 0.7,
  3. double gainR = 0.7,
})

Create an instance.

Implementation

const EchoTap({
  required this.delay,
  this.gainL = 0.7,
  this.gainR = 0.7,
});