copyWith method
Implementation
WebApiModulesIntegrationsStorefrontStorefrontProgress copyWith({
DateTime? lastUpdated,
bool? failed,
String? failureMessage,
String? failureStackTrace,
String? sessionId,
String? caption,
int? currentStep,
int? totalSteps,
int? percentComplete,
}) {
return WebApiModulesIntegrationsStorefrontStorefrontProgress(
lastUpdated: lastUpdated ?? this.lastUpdated,
failed: failed ?? this.failed,
failureMessage: failureMessage ?? this.failureMessage,
failureStackTrace: failureStackTrace ?? this.failureStackTrace,
sessionId: sessionId ?? this.sessionId,
caption: caption ?? this.caption,
currentStep: currentStep ?? this.currentStep,
totalSteps: totalSteps ?? this.totalSteps,
percentComplete: percentComplete ?? this.percentComplete,
);
}