currentInspectionProgress property

double get currentInspectionProgress

Implementation

double get currentInspectionProgress {
  if (currentInspectionTotal == 0) return 1.0;
  return currentInspectionDone / currentInspectionTotal;
}