isNull function

bool isNull(
  1. DartObject? object
)

Returns whether object is null or represents the value null.

Implementation

bool isNull(DartObject? object) => object == null || object.isNull;