isNull method

bool isNull(
  1. String name
)

Returns true if this object has no mapping for {@code name} or if it has a mapping whose value is {@link #NULL}.

Implementation

bool isNull(String name) {
  dynamic value = opt(name);
  return value == null || value == _null;
}