getCurrentAudioOutput method

Future<AudioOutputDevice?> getCurrentAudioOutput()

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

Implementation

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