FPickerWheel constructor

const FPickerWheel({
  1. required List<Widget> children,
  2. bool loop,
  3. int flex,
  4. double? itemExtent,
  5. bool autofocus,
  6. FocusNode? focusNode,
  7. ValueChanged<bool>? onFocusChange,
  8. Key? key,
})

Creates a picker wheel with the given children.

Implementation

const factory FPickerWheel({
  required List<Widget> children,
  bool loop,
  int flex,
  double? itemExtent,
  bool autofocus,
  FocusNode? focusNode,
  ValueChanged<bool>? onFocusChange,
  Key? key,
}) = ListWheel;