When utilizing a class with private properties in a model along with getter/setter methods, I am finding that I can only access the private property and not the public one using the getter/setter.
https://stackblitz.com/edit/angular-hx3t7g
Why is '_r' showing up in the ngModel instead of 'r'? How can I correct this, or should I even be approaching it this way?