FPicker constructor

const FPicker({
  1. required List<Widget> children,
  2. FPickerControl control = const .managed(),
  3. FPickerStyleDelta style = const .context(),
  4. String debugLabel = 'FPicker',
  5. Key? key,
})

Creates a FPicker with several wheels, and optionally, separators.

Implementation

const FPicker({
  required this.children,
  this.control = const .managed(),
  this.style = const .context(),
  this.debugLabel = 'FPicker',
  super.key,
});