SimpleSegmListChooser<T> constructor

const SimpleSegmListChooser<T>(
  1. List<T> data, {
  2. Key? key,
  3. Function? onChoosed,
  4. double itemLang = 48.0,
  5. double width = 0.0,
  6. double mainSpace = 0.0,
  7. double height = 20.0,
  8. required IndexedWidgetBuilder itemBuilder,
  9. IndexedWidgetBuilder? itemCurrentBuilder,
  10. Function? onIndexChoosed,
})

Implementation

const SimpleSegmListChooser(this.data,
    {Key? key,
    this.onChoosed,
    this.itemLang = 48.0,
    this.width = 0.0,
    this.mainSpace = 0.0,
    this.height = 20.0,
    required this.itemBuilder,
    this.itemCurrentBuilder,
    this.onIndexChoosed})
    : super(key: key);