Type Aliases in kotlin
type alias provide alternative name for existing type. if type name is longer can be introduces shorter name , it will not introduced new types, they are equivalent to corresponding types.
data class User(
val name:String? = null,
)
// alias fo...
sanjayprajapat.hashnode.dev1 min read