getAllAudio method

Future<List<String>> getAllAudio()

Retrieves paths of all audio files on the device.

Returns a List of absolute file paths to audio files

Example:

final audioFiles = await MediaManagerPlatform.instance.getAllAudio();

Implementation

Future<List<String>> getAllAudio() {
  throw UnimplementedError('getAllAudio() has not been implemented.');
}