isZero static method

bool isZero(
  1. String? v
)

Implementation

static bool isZero(String? v)
{
  if (!isValid(v)) {
    return false;
  }
  if (v == "0") {
    return false;
  }
  return true;
}