ValueBuilder<T> constructor
const
ValueBuilder<T> ({
- Key? key,
- required ValueBuilderCallback<
T> builder, - T? initial,
- ValueCallback<
T?> ? onUpdate, - ValueCallback<
BuildContext> ? initState, - ValueCallback<
BuildContext> ? didChangeDependencies, - ValueCallback<
BuildContext> ? didUpdateWidget, - ValueCallback<
BuildContext> ? deactivate, - ValueCallback<
BuildContext> ? dispose,
Implementation
const ValueBuilder({
super.key,
required this.builder,
this.initial,
this.onUpdate,
super.initState,
super.didChangeDependencies,
super.didUpdateWidget,
super.deactivate,
super.dispose,
});