queryFromFolder method
Future<List<SongModel> >
queryFromFolder(
- String path, {
- SongSortType? sortType,
- OrderType? orderType,
- 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 inEXTERNAL
orINTERNAL
storage.
Important:
- If
orderType
is null, will be set toASC_OR_SMALLER
. - If
sortType
is null, will be set totitle
. - If
uriType
is null, will be set toEXTERNAL
. - 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,
);
}