Observable that the State casts to.
asObservable
const myState = new UmbArrayState('Hello world');
this.observe(myState, (latestStateValue) => console.log("Value is: ", latestStateValue));
The next data for this state to hold.
setValue
const myState = new UmbArrayState('Good morning');
// myState.value is equal 'Good morning'.
myState.setValue('Goodnight')
// myState.value is equal 'Goodnight'.
UmbBooleanState
Description