bool isEmptyField(String? fieldName) { if (fieldName == null) return false; var val = getFieldExtended(fieldName); return isEmptyValue(val); }