FAutocompleteItem.raw constructor
FAutocompleteItem.raw({})
Creates a FAutocompleteItem with raw layout that delegates to FItem.raw.
This provides full control over the item's layout without the structured title/subtitle/prefix/suffix layout of the default constructor.
Implementation
factory FAutocompleteItem.raw({
required Widget child,
required String value,
FItemStyle Function(FItemStyle)? style,
bool? enabled,
Widget? prefix,
Key? key,
}) = _RawAutocompleteItem;