find method

  1. @visibleForTesting
Iterable<State<T>>? find(
  1. String id
)

Implementation

@visibleForTesting
Iterable<State<T>>? find(String id) {
  final probe = entries.keys.firstWhereOrNull((s) => s.id == id);
  return probe == null ? null : entries[probe];
}