isZero property
bool
get
isZero
isZero: check if this is 0
Implementation
bool get isZero {
if (isNull) return false;
if (this! == 0) return true;
return false;
}
isZero: check if this is 0
bool get isZero {
if (isNull) return false;
if (this! == 0) return true;
return false;
}