``` class MyClass { val myObject: SomeObjec...
# getting-started
e
Copy code
class MyClass {   
    val myObject: SomeObjectThatNeedsCodeToInitialize
    constructor(whatever: Any) {
        //do what you need and init myObject
    }
    constructor(whatever2: Any2) {
        //do what you need and init myObject
    }
}