getAudioSources method

Future<List<AudioSource>> getAudioSources()

This command lists all available physical audio inputs of the device.

Implementation

Future<List<m1.AudioSource>> getAudioSources() async =>
    _mediaSupportLevel == MediaSupportLevel.two
        ? throw NotSupportedException()
        : media1.getAudioSources();