raw<T> static method

FSelectItem<T> raw<T>({
  1. required Widget child,
  2. required T value,
  3. FItemStyleDelta style = const .context(),
  4. bool? enabled,
  5. Widget? prefix,
  6. Key? key,
})

Creates a FSelectItem with a raw layout.

This function is a shorthand for FSelectItem.raw.

Implementation

static FSelectItem<T> raw<T>({
  required Widget child,
  required T value,
  FItemStyleDelta style = const .context(),
  bool? enabled,
  Widget? prefix,
  Key? key,
}) => .raw(value: value, style: style, enabled: enabled, prefix: prefix, key: key, child: child);