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