queryFromFolder method

Future<List<SongModel>> queryFromFolder(
  1. String path,
  2. {SongSortType? sortType,
  3. OrderType? orderType,
  4. UriType? uriType}
)

Used to return Songs Info from a specific Folder based in SongModel.

Parameters:

  • path is used to define where the plugin will search for audio.
  • orderType is used to define if order will be Ascending or Descending.
  • sortType is used to define list sort.
  • uriType is used to define if songs will be catch in EXTERNAL or INTERNAL storage.

Important:

  • If orderType is null, will be set to ASC_OR_SMALLER.
  • If sortType is null, will be set to title.
  • If uriType is null, will be set to EXTERNAL.
  • If Android >= Q/10 artwork will return null, in this case, it's necessary use queryArtwork.

Platforms:

Android IOS Web
✔️

See more about platforms support

Implementation

Future<List<SongModel>> queryFromFolder(
  String path, {
  SongSortType? sortType,
  OrderType? orderType,
  UriType? uriType,
}) async {
  return platform.queryFromFolder(
    path,
    sortType: sortType,
    orderType: orderType,
    uriType: uriType,
  );
}