Returns true if this object has no mapping for {@code name} or if it has a mapping whose value is {@link #NULL}.
bool isNull(String name) { dynamic value = opt(name); return value == null || value == _null; }