What does accessors mean in kotlin? Does it imply ...
# android
c
What does accessors mean in kotlin? Does it imply both getter & setter or it only means getter? Also, can anyone please explain this in the image below🙏
r
Does it imply both getter & setter or it only means getter?
If it's immutable (val) only getter and for mutable (var) both.
👍 1