Kotlin Basics - Property
In this article , Lets understand how to use property getters and setters in kotlin
A simple student class as follows
class Student(var studentFirstName: String,
var studentLastName: String = "No Name") {
fun ...
vigneshprabhu.dev3 min read