ChipWidgetBuilder<T> typedef
ChipWidgetBuilder<T> =
Widget Function(BuildContext context, T chip)
Function signature for building custom chip widgets in chip input fields.
Takes a BuildContext and chip data of type T
, returning a widget that
represents the chip visually. Allows complete customization of chip appearance
and behavior within chip input components.
Implementation
typedef ChipWidgetBuilder<T> = Widget Function(BuildContext context, T chip);