selectSource method

Future<void> selectSource(
  1. String sourceId
)

Implementation

Future<void> selectSource(String sourceId) async {
  selectedSourceId = sourceId;
  sourceSearchText = '';
  collectionSearchText = '';
  notifyListeners();
  await loadCollections(sourceId);
}