Calling method using companion object question
Based on this question:
link here
I can understand that Kotlin does not have static members or member functions.
On UpdateInfoActivity.kt I have the following code:
private var profile: Profile? = null
private lateinit var appBarConfiguration: AppBarConfiguration
private var drawerLayout: DrawerLayout? = null
private var toolbar: Toolbar? = null
private var navController: NavController? = null
override...