addBool method Null safety

LDValueObjectBuilder addBool(
  1. String key,
  2. bool? value
)

Associated the given key and bool in the builder.

Implementation

LDValueObjectBuilder addBool(String key, bool? value) => addValue(key, LDValue.ofBool(value));