isNull property

bool get isNull

Check if the object is null

Example: object.isNull // true

Implementation

bool get isNull => this == null;