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