Skip to content

Instantly share code, notes, and snippets.

@prateek54
Created September 17, 2020 08:06
Show Gist options
  • Save prateek54/df6ac98df2f07655c9553a0ffd6425a8 to your computer and use it in GitHub Desktop.
Save prateek54/df6ac98df2f07655c9553a0ffd6425a8 to your computer and use it in GitHub Desktop.
Null Safety a battle in Kotlin 4
if(avengers?.haveInfinityStones()){
 destroyThanos(avengers)
}
Or
if(avengers!!.haveInfinityStones()){
 destroyThanos(avengers)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment