addString method Null safety

LDValueObjectBuilder addString(
  1. String key,
  2. String? value
)

Associated the given key and String in the builder.

Implementation

LDValueObjectBuilder addString(String key, String? value) => addValue(key, LDValue.ofString(value));