isNotNull property

bool get isNotNull

Returns true if the raw value of this field is not null.

This is the inverse of isNull. It checks the underlying rawValue.

Implementation

bool get isNotNull => rawValue != null;