<@U282LGMGR> actually don't even need that, just m...
# announcements
m
@redrield actually don't even need that, just make a secondary constructor:
Copy code
interface Foo
class Bar(val param1: Int, val param2: Int) : Foo
class Thing private constructor(val bar: Bar) : Foo by bar {
    constructor(param1: Int, param2: Int) : this(Bar(param1, param2))
}