FAutocompleteItem.item constructor
FAutocompleteItem.item({})
Creates a FAutocompleteItem with a custom title and value.
This is identical to FAutocompleteItem.new. It provides consistency with other FAutocompleteItemMixin members when using dot-shorthands.
For even more control over the item's appearance, use FAutocompleteItem.raw.
Implementation
factory FAutocompleteItem.item({
required String value,
FItemStyleDelta style,
bool? enabled,
Widget? prefix,
Widget? title,
Widget? subtitle,
Widget? suffix,
Key? key,
}) = FAutocompleteItem;