Concept Flow - Property decorator usage
Define class with private attribute
Define @property method
Access property: calls getter method
Define @property.setter method
Assign to property: calls setter method
Property value updated internally
Access property again to get updated value
The flow shows how a class uses @property to create a getter and setter for a private attribute, allowing controlled access and update.