void setInt(int field, int? value) => value == null ? unset(field) : setString(field, value.toString());