isZeroInt static method

bool isZeroInt(
  1. int? v
)

Implementation

static bool isZeroInt(int? v) {
  if ( v == null ) return true;
  if ( v == 0 ) return true;
  return false;
}