If value is `String?`, is `map.put(key, value?.toL...
# announcements
r
If value is
String?
, is
map.put(key, value?.toLowercase())
the same as
map.put(key, value?.toLowercase() ?: null)
?