isNullOrZero property
bool
get
isNullOrZero
Checks if the value is null or zero.
Implementation
bool get isNullOrZero => this == null || this == 0;
Checks if the value is null or zero.
bool get isNullOrZero => this == null || this == 0;