InstanceValueBuilder<T, V> typedef

InstanceValueBuilder<T, V> = Widget Function(BuildContext context, T inst, V value, Widget? child)

This function type can be used as a callback to build a widget tree based on an instance of T type and a value of V type.

Implementation

typedef InstanceValueBuilder<T, V> = Widget Function(
  BuildContext context,
  T inst,
  V value,
  Widget? child,
);