add method
Implementation
PropertiesBuilder add(String key, Object value) {
if (_isOverMaxPropertiesCount()) {
return this;
}
if (!_isValidKey(key)) {
return this;
}
Object? sanitizedValue = _sanitize(key, value);
if (sanitizedValue != null) {
_properties[key] = sanitizedValue;
}
return this;
}