Skip to content

Instantly share code, notes, and snippets.

@Chrispassold
Created September 2, 2020 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Chrispassold/80326fde946c2a0e4e293a312096dfac to your computer and use it in GitHub Desktop.
Save Chrispassold/80326fde946c2a0e4e293a312096dfac to your computer and use it in GitHub Desktop.
import android.os.Bundle
data class Event internal constructor(
val name: String,
val params: Bundle
) {
override fun toString(): String {
return "Event(name='$name', params=$params)"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment