PickerStatefulWidget<T> constructor

const PickerStatefulWidget<T>({
  1. Key? key,
  2. required PickerOptions<T>? options,
  3. required WheelOptions? wheelOptions,
  4. double height = kPickerDefaultHeight,
  5. double width = double.infinity,
  6. double? itemWidth,
})

Implementation

const PickerStatefulWidget(
    {super.key,
    required this.options,
    required this.wheelOptions,
    this.height = kPickerDefaultHeight,
    this.width = double.infinity,
    this.itemWidth});