removeAllRoutes method

void removeAllRoutes({
  1. double fadeout = 0.1,
})

Remove all routes from this source.

Implementation

void removeAllRoutes({final double fadeout = 0.1}) => synthizer.check(
      synthizer.synthizer.syz_routingRemoveAllRoutes(
        context.handle.value,
        handle.value,
        fadeout,
      ),
    );