copyWith method
Implementation
WebApiModulesIntegrationsStorefrontResetPasswordFromEmailRequest copyWith({
String? email,
String? temporaryPassword,
String? newPassword,
}) {
return WebApiModulesIntegrationsStorefrontResetPasswordFromEmailRequest(
email: email ?? this.email,
temporaryPassword: temporaryPassword ?? this.temporaryPassword,
newPassword: newPassword ?? this.newPassword,
);
}