static bool isLength(String? value) { return value != null && ( value == ZERO || _lengthRegExp.hasMatch(value) ); }