exists method

  1. @override
bool exists(
  1. String topic,
  2. String id
)
override

Implementation

@override
bool exists(String topic, String id) {
  final ids = get(topic);
  return ids.contains(id);
}