queryDocumentsFromPath method
Query document files from a specific path
Implementation
Future<List<DocumentModel>> queryDocumentsFromPath(String path,
{QueryOptions? options}) async {
return await _queryMediaUseCase.queryDocumentsFromPath(path,
options: options);
}