RightWheelPanel<T> constructor

const RightWheelPanel<T>(
  1. List<T> itemTitles, {
  2. Key? key,
  3. required ValueChanged<T> onSelected,
  4. int initialIndex = 0,
  5. String displayFormatter(
    1. T item
    )?,
})

Implementation

const RightWheelPanel(
  this.itemTitles, {
  super.key,
  required this.onSelected,
  this.initialIndex = 0,
  this.displayFormatter,
});