createMachineVoiceAsync method

  1. @Deprecated('Use createMachineVoice(). This async variant will be removed in a future release.')
Future<List<WANode>> createMachineVoiceAsync()

Asynchronously creates a specialized Machine Voice on a worker isolate.

Returns nodes in this fixed order: Oscillator, Filter, Gain, Panner, Delay, DelayFb, DelayWet.

Implementation

@Deprecated(
    'Use createMachineVoice(). This async variant will be removed in a future release.')
Future<List<WANode>> createMachineVoiceAsync() async {
  return createMachineVoice();
}