value property

TValue value
getter/setter pairinherited

The value that you want to pass to all the components reading this context inside this provider, no matter how deep.

The context value can be of any type.

A component calling useContext(SomeContext) inside of the provider receives the value of the innermost corresponding context provider above it.

Implementation

late TValue value;