listSources method

Future<List<SourceEntry>> listSources({
  1. String? collectionId,
})

Get a list of all stored sources.

Implementation

Future<List<SourceEntry>> listSources({String? collectionId}) async {
  final service = await _serviceForCollection(collectionId);
  return service.listSources();
}