Constructs a View UI object.
\Drupal\views\ViewStorageInterface $storage: The View storage object to wrap.
public function __construct(ViewStorageInterface $storage, ViewExecutable $executable = NULL) {
$this->entityType = 'view';
$this->storage = $storage;
if (!isset($executable)) {
$executable = Views::executableFactory()
->get($this);
}
$this->executable = $executable;
}