asNullIfZero property

int? get asNullIfZero

returns null if 0

Implementation

int? get asNullIfZero => this == 0 ? null : this;