forTopic static method
- List<
ConfidenceEvent> events, - String topicId
Filter events for a specific topic.
Implementation
static List<ConfidenceEvent> forTopic(
List<ConfidenceEvent> events,
String topicId,
) {
return events.where((e) => e.topicId == topicId).toList();
}