markAsCompleted method
- String? pjNr
Implementation
void markAsCompleted(String? pjNr) {
if (pjNr != null && !completedInspections.contains(pjNr)) {
completedInspections.add(pjNr);
notifyListeners();
}
}
void markAsCompleted(String? pjNr) {
if (pjNr != null && !completedInspections.contains(pjNr)) {
completedInspections.add(pjNr);
notifyListeners();
}
}