What is a Factory Method in Kotlin?

It’s a kinda Design Pattern. How and when do we need to use it? The Factory method is a creational pattern used to create objects when – A class cannot anticipate the type of objects it needs to create beforehand. You want to localize the logic to instantiate a complex object. You need several “constructors” […]