Observable that the State casts to.
asObservable
const myState = new UmbArrayState('Hello world');
this.observe(myState, (latestStateValue) => console.log("Value is: ", latestStateValue));
Method to return the part for this Observable to return.
Optional
memoizationFunction: MemoizationFunction<ReturnType>Method to Compare if the data has changed. Should return true when data is different.
The next data for this state to hold.
UmbDeepState
Description