SafaehOptionPickerBody<T> constructor

const SafaehOptionPickerBody<T>({
  1. Key? key,
  2. required List<SafaehOption<T>> options,
  3. String? title,
  4. SafaehTitleBuilder? titleBuilder,
  5. T? selected,
  6. String? footer,
  7. double? tabletBreakpoint,
  8. bool showTitleInBody = true,
  9. ValueChanged<T>? onSelected,
})

Implementation

const SafaehOptionPickerBody({
  super.key,
  required this.options,
  this.title,
  this.titleBuilder,
  this.selected,
  this.footer,
  this.tabletBreakpoint,
  this.showTitleInBody = true,
  this.onSelected,
});