isNull function
Returns whether object is null or represents the value null.
Implementation
bool isNull(DartObject? object) => object == null || object.isNull;
Returns whether object is null or represents the value null.
bool isNull(DartObject? object) => object == null || object.isNull;