Is there an easy way to print the contents of a Bundle to Logcat if you can\'t remember the names of all the keys (even being able to print just the key names w
Bundle
Simple Bundle to String implementation in Kotlin:
val bundleToString = bundle.keySet() .joinToString(", ", "{", "}") { key -> "$key=${bundle[key]}" }
Example of result {id=3, name="Jhon"}
{id=3, name="Jhon"}