chooseAudioDevice static method

Future<String?> chooseAudioDevice(
  1. String label
)

Chooses a device by label.

Implementation

static Future<String?> chooseAudioDevice(String label)
async
{
    var params = {'Label': label};
    return _methodChannel.invokeMethod('ChooseAudioDevice', params);
}