on Android I find myself usually using the `constr...
# getting-started
k
on Android I find myself usually using the
constructor
keyword if I want to make something injectable (
class SomeInjectable @Inject internal constructor()
) or for a View (
class MyView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyle: Int = 0) : LinearLayout(context, attrs, defStyle)
) for example
👍 1