buildObject static method Null safety

LDValueObjectBuilder buildObject()

Starts building an object value.

Returns an LDValueObjectBuilder for constructing an object instance.

LDValue objectValue = LDValue.buildObject().addBool('key', true).build();

Implementation

static LDValueObjectBuilder buildObject() => LDValueObjectBuilder();