isNullOrNullPointer property

bool get isNullOrNullPointer

Returns true if this is either null or is a nullptr.

Implementation

bool get isNullOrNullPointer => _isNull || isNullPointer;