menu
cutils package
documentation
num/num_utils.dart
NumUtils
isZero method
isZero method
dark_mode
light_mode
isZero
method
bool
isZero
(
num
?
value
)
isZero 判断是否是否是0
Implementation
bool isZero(num? value) { return value == null || value == 0; }
cutils package
documentation
num/num_utils
NumUtils
isZero method
NumUtils class