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