FSelectItem<T>.raw constructor

const FSelectItem<T>.raw({
  1. required Widget child,
  2. required T value,
  3. FItemStyle style(
    1. FItemStyle
    )?,
  4. bool? enabled,
  5. Widget? prefix,
  6. 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>;