topicIdsWithContent function

  1. @riverpod
Future<Set<String>> topicIdsWithContent(
  1. Ref<Object?> ref,
  2. String domainId
)

Implementation

@riverpod
Future<Set<String>> topicIdsWithContent(Ref ref, String domainId) async {
  final ds = ref.watch(supabaseDatasourceProvider);
  return ds.getTopicIdsWithContent(domainId);
}