updateProgress method

void updateProgress(
  1. String? pjNr,
  2. double progress
)

Implementation

void updateProgress(String? pjNr, double progress) {
  if (pjNr != null) {
    inspectionProgress[pjNr] = progress;
    notifyListeners();
  }
}