/**
 * Writes a divider between dropdown menu items.
 *
 * @param   string  $text  The text of button.
 *
 * @return  SeparatorButton
 *
 * @since  4.0.0
 */
public function divider(string $text = '') : SeparatorButton
{
    return $this->separatorButton('divider', $text);
}