is it bad to have null optional parameters for whe...
# announcements
a
is it bad to have null optional parameters for when something DNE? i.e.,
class ItemData(material: Material = Material.AIR, name: String? = null)
if so, what else should I do?