beadById method
Implementation
@override
Future<Bead?> beadById(String id, {required Set<IssueType> types}) async {
final matches = exportBeads.where(
(b) => b.id == id && types.contains(b.issueType),
);
return matches.isEmpty ? null : matches.single;
}