asNullIfZero property

int? asNullIfZero

returns null if 0

Implementation

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