ValueBuilder<T> constructor
const
ValueBuilder<T> ({
- Key? key,
- required T initialValue,
- void onDispose()?,
- void onUpdate(
- T
- required ValueBuilderBuilder<
T> builder,
Implementation
const ValueBuilder({
super.key,
required this.initialValue,
this.onDispose,
this.onUpdate,
required this.builder,
});