isPersistent property

bool get isPersistent

True when the field participates in persistence-oriented dataset output.

Regular fields default to persistent. Calculated fields default to non-persistent unless persistent explicitly overrides the default.

Implementation

bool get isPersistent => persistent ?? !isCalculated;