Optional
Optional schema to validate the possible types of value we expect the dynamic property to produce. Whenever a value does not match this schema, the dynamic property's value property will become undefined.
value
undefined
const title = useDynamicProperty(props.title, { valueSchema: values.String() }); Copy
const title = useDynamicProperty(props.title, { valueSchema: values.String() });
Optional schema to validate the possible types of value we expect the dynamic property to produce. Whenever a value does not match this schema, the dynamic property's
valueproperty will becomeundefined.