fetchBatch method

Future<Map<String, AudioResolverResult?>> fetchBatch({
  1. required List<String> videoIds,
  2. bool forceRefresh = false,
  3. int concurrency = 5,
})

Resolve multiple video IDs to audio URLs.

Implementation

Future<Map<String, AudioResolverResult?>> fetchBatch({
  required List<String> videoIds,
  bool forceRefresh = false,
  int concurrency = 5,
}) {
  throw UnimplementedError('fetchBatch() has not been implemented.');
}