isZero static method

bool isZero(
  1. num? value
)

isZero

Implementation

static bool isZero(num? value) {
  return value == null || value == 0;
}