successRate property
double
get
successRate
Success rate (0.0 to 1.0)
Implementation
double get successRate {
final total = totalCompleted + totalFailed;
if (total == 0) return 0.0;
return totalCompleted / total;
}