selectMicrophone method

Future<bool> selectMicrophone(
  1. AudioInputDevice device
)

Selects the target hardware microphone for recording (front, back, bottom, bluetooth, etc).

Implementation

Future<bool> selectMicrophone(AudioInputDevice device) {
  return NexoraSdkPlatform.instance.selectAudioInput(device);
}