copyWith method

WebApiModulesIntegrationsStorefrontResetPasswordFromEmailRequest copyWith({
  1. String? email,
  2. String? temporaryPassword,
  3. String? newPassword,
})

Implementation

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