I know you can override a trait
method by declaring it in your class, I was curious if was possible to over ride a trait
Property the same way. Is this safe to do? Its not in the Documentation so I am hesitant to implement this.
From the Documentation
An inherited member from a base class is overridden by a member inserted by a Trait. The precedence order is that members from the current class override Trait methods, which in turn override inherited methods.