sendWith() public method

Tell the dispatcher to send the notification with a custom (extended method).
public sendWith ( $customMethod )
$customMethod
 /**
  * Fire method for fire listeners
  * of logic
  *
  * @param  string     $key
  * @param  string     $category_name
  * @param  mixed|null $values
  * @return mixed|null
  */
 public function fire($key, $category_name, $values = [])
 {
     return $this->notifynderDispatcher->sendWith($this->eventSender)->fire($this, $key, $category_name, $values);
 }