ProjectStatistics constructor
ProjectStatistics({
- Int64? totalDuration,
- Int64? totalCompletionPercentage,
- Int64? totalPoints,
Implementation
factory ProjectStatistics({
$fixnum.Int64? totalDuration,
$fixnum.Int64? totalCompletionPercentage,
$fixnum.Int64? totalPoints,
}) {
final result = create();
if (totalDuration != null) result.totalDuration = totalDuration;
if (totalCompletionPercentage != null)
result.totalCompletionPercentage = totalCompletionPercentage;
if (totalPoints != null) result.totalPoints = totalPoints;
return result;
}