Concept Flow - Init-only setters
Create object instance
Set properties with init-only setters
Object is immutable after initialization
Attempt to modify property after init -> Compile error
This flow shows how init-only setters allow setting properties only during object creation, making the object immutable afterward.