ValueBuilder<T> constructor

const ValueBuilder<T>({
  1. required T initialValue,
  2. required ValueBuilderBuilder<T> builder,
  3. Key? key,
  4. void onDispose()?,
  5. void onUpdate(
    1. T
    )?,
})

Implementation

const ValueBuilder({
  required this.initialValue,
  required this.builder,
  super.key,
  this.onDispose,
  this.onUpdate,
});