notNullOrZero property
bool
get
notNullOrZero
Implementation
bool get notNullOrZero {
if (this == null || this == 0) {
return false;
}
return this!.abs().toStringAsFixed(4) != "0.0000";
}