For example I had a TwitterFragment holding a Twit...
# android
r
For example I had a TwitterFragment holding a Twitter timeline which has something like this
Copy code
private lateinit var twitter: String
which was affected after the Fragment was built by the caller and now I've got
Copy code
private val twitter by lazy { arguments.getString("twitter") }