Private variables not visible in method scope

What seems to be the problem:

Hi, seems like private variables have no visiblity in other functions.

Steps to Reproduce:

  
 public function mount(){
  $this->id = 1;
}

public function foo {
  // Here $this->id returns null;
}

Are you using the latest version of Livewire:
Yes