getAudioInputs method

Future<List<MediaDeviceInfo>> getAudioInputs()
inherited

Return the available audioinputs

Note: Make sure to call this gettet after initLocalMediaStream, otherwise the devices will not be listed.

Implementation

Future<List<MediaDeviceInfo>> getAudioInputs() {
  return Helper.enumerateDevices('audioinput');
}