listSources method
Get a list of all stored sources.
Implementation
Future<List<SourceEntry>> listSources({String? collectionId}) async {
final service = await _serviceForCollection(collectionId);
return service.listSources();
}
Get a list of all stored sources.
Future<List<SourceEntry>> listSources({String? collectionId}) async {
final service = await _serviceForCollection(collectionId);
return service.listSources();
}