Gets a specific option.
See \Drupal\Core\Url::fromUri() for details on the options.
string $name: The name of the option.
mixed The value for a specific option, or NULL if it does not exist.
public function getOption($name) { if (!isset($this->options[$name])) { return NULL; } return $this->options[$name]; }