StateBuilder<T> constructor
const
StateBuilder<T> (
- T value,
- Widget builder(
- T value,
- StateBuilderState<
T>
- Key? key,
- ValueSetter<
T> ? onInit, - void onPostInit(
- T value,
- StateBuilderState<
T> setValue
- ValueChanged<
T> ? onUpdate, - ValueSetter<
T> ? onDispose, - ValueSetter<
T> ? onPostDispose,
Implementation
const StateBuilder(
this.value,
this.builder, {
super.key,
this.onInit,
this.onPostInit,
this.onUpdate,
this.onDispose,
this.onPostDispose,
});