Welcome to kotlin Series
In this post, we are going to discuss a very important topic of Kotlin. The topic is kotlin null safety.
I think you already heard this keyword, null safety, Kotlin is a null safety language. right?
what is the null safety? In kotlin by default, you can not assign a value of a variable as null. All the variable must have a value.
but if you want an assign a variable as null, you have to use?
code-
val nullValue:String? = null
if you want to create...
AndroidSketchpad
Imagine Learn And Apply