isHiddenPjNr method

Future<bool> isHiddenPjNr(
  1. String? pjNr
)

Implementation

Future<bool> isHiddenPjNr(String? pjNr) async {
  final normalized = _normalizePjNr(pjNr);
  if (normalized == null) return false;
  final hidden = await getHiddenPjNrs();
  return hidden.contains(normalized);
}