the class-header gets way too messy, agreed. Espec...
# announcements
k
the class-header gets way too messy, agreed. Especially if you need to modify the constructor in any way (visibility or annotation). I have classes like:
Copy code
class SearchView
@JvmOverloads constructor(
    context: Context,
    attrs: AttributeSet? = null,
    defStyle: Int = 0
) : LinearLayout(context, attrs, defStyle),
    SearchMVPView {