copyWith method
LongreadMaterialEstimation
copyWith({
- String? startDate,
- String? timer,
- double? maxScore,
- DateTime? deadline,
- LongreadMaterialActivity? activity,
Implementation
LongreadMaterialEstimation copyWith({
String? startDate,
String? timer,
double? maxScore,
DateTime? deadline,
LongreadMaterialActivity? activity,
}) {
return LongreadMaterialEstimation(
startDate: startDate ?? this.startDate,
timer: timer ?? this.timer,
maxScore: maxScore ?? this.maxScore,
deadline: deadline ?? this.deadline,
activity: activity ?? this.activity,
);
}