copyWithWrapped method

Implementation

WebApiModulesAccountServicesAccountResetPasswordExternalRequest
copyWithWrapped({Wrapped<String>? newPassword, Wrapped<String>? token}) {
  return WebApiModulesAccountServicesAccountResetPasswordExternalRequest(
    newPassword: (newPassword != null ? newPassword.value : this.newPassword),
    token: (token != null ? token.value : this.token),
  );
}