Easiest example might be a bundle. Still have the ...
# getting-started
a
Easiest example might be a bundle. Still have the same lines of code, but it makes for a nice little separation and easy way to group all the things:
Copy code
val args = Bundle().apply { 
            putString("name", "Adam")
            putInt("age", 25)
            putBoolean("male", true)
        }