FSelectItem<T>.raw constructor
const
FSelectItem<T>.raw ({
- required Widget child,
- required T value,
- FItemStyle style()?,
- bool? enabled,
- Widget? prefix,
- Key? key,
Creates a FSelectItem with a raw layout.
Implementation
const factory FSelectItem.raw({
required Widget child,
required T value,
FItemStyle Function(FItemStyle)? style,
bool? enabled,
Widget? prefix,
Key? key,
}) = _RawSelectItem<T>;