isNullOrZero property

bool get isNullOrZero

Checks if the value is null or zero.

Implementation

bool get isNullOrZero => this == null || this == 0;