copyWithWrapped method
Implementation
WebApiModulesIntegrationsStorefrontResetPasswordFromEmailRequest
copyWithWrapped({
Wrapped<String>? email,
Wrapped<String>? temporaryPassword,
Wrapped<String>? newPassword,
}) {
return WebApiModulesIntegrationsStorefrontResetPasswordFromEmailRequest(
email: (email != null ? email.value : this.email),
temporaryPassword: (temporaryPassword != null
? temporaryPassword.value
: this.temporaryPassword),
newPassword: (newPassword != null ? newPassword.value : this.newPassword),
);
}