In the style guides it is advised to not prefix variables with underscored
But in this particular example I've seen it was used like this:
@Input() set testVariable(value) {
this._testVariable= value;
}
When intercepting an Input, is there a naming convention for the class variable?