isNotZeroInt static method

bool isNotZeroInt(
  1. int? v
)

Implementation

static bool isNotZeroInt(int? v ) {
  return !isZeroInt(v);
}