getAudioSources method
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();