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