setTaps method

  1. @override
void setTaps(
  1. Iterable<EchoTap> taps
)
override

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(),
  );
}