queryDocumentsFromPath method

Future<List<DocumentModel>> queryDocumentsFromPath(
  1. String path, {
  2. QueryOptions? options,
})

Query document files from a specific path

Implementation

Future<List<DocumentModel>> queryDocumentsFromPath(String path,
    {QueryOptions? options}) async {
  return await _queryMediaUseCase.queryDocumentsFromPath(path,
      options: options);
}