/**
  * Sets {@link Notification#setTitleKey(String)}.
  *
  * @param titleKey The titleKey of the notification.
  * @return The builder.
  */
 public B titleKey(String titleKey) {
   notification.setTitleKey(titleKey);
   return self();
 }