I am using the below code in my Controller file to generate full site URL
$this->Url->build(['controller' => 'home', 'action' => 'index'], true);
.
But I am getting a "Call to a member function build() on boolean" error. The reason why I am not using
Router::URL(['controller' => 'home', 'action' => 'index']);
is I don't want a relative URL. Can't I use Url builder in the controller?