reza.shah
02/26/2016, 11:42 AMclass Attachment(val name: String) {
val isValidName = name.toLowerCase().endsWith(“.jpg”)
}
But not with this:
class Attachment(val name: String) {
val isValidName by lazy { name.toLowerCase().endsWith(".jpg") }
}