itemBuilder property
Custom builder for rendering individual enum items in both dropdown and cards modes, of type
Widget Function(BuildContext, T)?. Receives the BuildContext and item; defaults to _defaultItemBuilder
which shows the enum name as Text. This enables rich UIs like icons or formatted descriptions in Arcane forms.
Implementation
final Widget Function(BuildContext, T)? itemBuilder;