copyWith method
Implementation
InstallProgressDTO copyWith(
{String? type, String? currentStep, DateTime? modifiedDate}) {
return InstallProgressDTO(
type: type ?? this.type,
currentStep: currentStep ?? this.currentStep,
modifiedDate: modifiedDate ?? this.modifiedDate);
}