isNull property

bool get isNull

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

This checks the underlying rawValue, which may differ from the typed value getter (which may provide a default value).

Implementation

bool get isNull => rawValue == null;