isNotNull property

bool get isNotNull

Check if the object is not null

Example: object.isNotNull // true

Implementation

bool get isNotNull => this != null;