Concept Flow - Creational patterns (Singleton, Factory, Builder)
Start
Need object creation
Singleton
One instance
Use object
End
The flow starts when an object is needed. You pick one of the three creational patterns: Singleton for one instance, Factory for creating objects based on input, or Builder for step-by-step construction. Then you use the created object.