rawItem static method
FAutocompleteItem
rawItem({
- required Widget child,
- required String value,
- FItemStyle style(
- FItemStyle style
- bool? enabled,
- Widget? prefix,
- Key? key,
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.
This function is a shorthand for FAutocompleteItem.raw.
Implementation
static FAutocompleteItem rawItem({
required Widget child,
required String value,
FItemStyle Function(FItemStyle style)? style,
bool? enabled,
Widget? prefix,
Key? key,
}) => .raw(value: value, style: style, enabled: enabled, prefix: prefix, key: key, child: child);