getAllDocuments method
Retrieves paths of all document files on the device.
Returns a List of absolute file paths to document files
Example:
final documents = await MediaManagerPlatform.instance.getAllDocuments();
Implementation
Future<List<String>> getAllDocuments() {
throw UnimplementedError('getAllDocuments() has not been implemented.');
}