addNum method Null safety

LDValueObjectBuilder addNum(
  1. String key,
  2. num? value
)

Associated the given key and num in the builder.

Implementation

LDValueObjectBuilder addNum(String key, num? value) => addValue(key, LDValue.ofNum(value));