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