@@ -39,7 +39,7 @@ NOTE: Feel free to help with readme translations
39
39
Add the following code to your ` pubspec.yaml ` :
40
40
``` yaml
41
41
dependencies :
42
- on_audio_query : ^1.0.6
42
+ on_audio_query : ^1.0.7
43
43
` ` `
44
44
45
45
#### Request Permission:
@@ -61,6 +61,7 @@ If you want to use the built-in request permission, will need add the following
61
61
* Get all artists and artist-specific audios.
62
62
* Get all playlists and playlists-specific audios.
63
63
* Get all genres and genres-specific audios.
64
+ * Get all folders and specific audios.
64
65
* Get all query methods with specific keys [Search].
65
66
* Create/Delete/Rename playlists.
66
67
* Add/Remove/Move specific audios to playlists.
@@ -82,16 +83,18 @@ All types of methods on this plugin:
82
83
83
84
| Methods | Parameters | Return |
84
85
|--------------|-----------------|-----------------|
85
- | [`querySongs`](#querysongs) | `(SortType, OrderType, UriType,RequestPermission)` | `List<SongModel>` | <br>
86
+ | [`querySongs`](#querysongs) | `(SortType, OrderType, UriType, RequestPermission)` | `List<SongModel>` | <br>
86
87
| [`queryAudio`]() | `(SortType, OrderType, UriType, RequestPermission)`. | `List<SongModel>` | <br>
87
88
| [`queryAlbums`](#queryalbums) | `(SortType, OrderType, UriType, RequestPermission)` | `List<AlbumModel>` | <br>
88
89
| [`queryArtists`](#queryartists) | `(SortType, OrderType, UriType, RequestPermission)` | `List<ArtistModel>` | <br>
89
90
| [`queryPlaylists`](#queryplaylists) | `(SortType, OrderType, UriType, RequestPermission)` | `List<PlaylistModel>` | <br>
90
91
| [`queryGenres`](#querygenres) | `(SortType, OrderType, UriType, RequestPermission)` | `List<GenreModel>` | <br>
91
92
| [`queryAudiosFrom`]() | `(Type, Where, RequestPermission)` | `List<SongModel>` | <br>
92
- | [`queryAudiosOnly`]() | `(Type, Where, AudiosOnlyType, RequestPermission)` | `List<SongModel>` | <br>
93
- | [`queryWithFilters`]() | `(ArgsVal, WithFiltersType, Args, RequestPermission)` | `List<dynamic>` | <br>
94
- | [`queryArtworks`]() | `(Id, Type, Format, Size, RequestPermission)` | `Uint8List` | <br>
93
+ | [`queryAudiosOnly`](#queryAudiosOnly) | `(Type, Where, AudiosOnlyType, RequestPermission)` | `List<SongModel>` | <br>
94
+ | [`queryWithFilters`](#queryWithFilters) | `(ArgsVal, WithFiltersType, Args, RequestPermission)` | `List<dynamic>` | <br>
95
+ | [`queryArtworks`](#queryArtworks) | `(Id, Type, Format, Size, RequestPermission)` | `Uint8List` | <br>
96
+ | [`queryFromFolder`]() | `(Path, SortType, OrderType, UriType, RequestPermission)`. | `List<SongModel>` | <br>
97
+ | [`queryAllPath`]() | | `List<String>` | <br>
95
98
| [`createPlaylist`]() | `(PlaylistName, RequestPermission)` | `bool` | <br>
96
99
| [`removePlaylist`]() | `(PlaylistId, RequestPermission)` | `bool` | <br>
97
100
| [`addToPlaylist`]() | **[NT-BG]**`(PlaylistId, AudioId, RequestPermission)` | `bool` | <br>
0 commit comments