querySongs method

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

Implementation

Future<List<SongModel>> querySongs({
  SongSortType sortType = SongSortType.title,
  OrderType orderType = OrderType.asc,
  UriType uriType = UriType.external,
  String? path,
}) {
  throw UnimplementedError('querySongs() has not been implemented.');
}