setTaps method
Update the taps for this echo.
Implementation
@override
void setTaps(final Iterable<EchoTap> taps) {
echo.setTaps(
taps
.map<EchoTapConfig>(
(final e) => EchoTapConfig(e.delay, e.gainL, e.gainR),
)
.toList(),
);
}