getCurrentMicrophone method

Future<AudioInputDevice?> getCurrentMicrophone()

Gets the currently active microphone / audio input device, or null if none/unknown.

Implementation

Future<AudioInputDevice?> getCurrentMicrophone() {
  throw UnimplementedError(
    'getCurrentMicrophone() has not been implemented.',
  );
}