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 ...
Aug 7, 20213 min read101

