SelectionPickerDialog<T> constructor

SelectionPickerDialog<T>({
  1. String? title,
  2. required List<T> items,
  3. T? selectedItem,
  4. Transformer<T>? transformer,
  5. Iconizer<T?>? iconizer,
  6. Color? headerColor,
  7. Color? headerTextColor,
  8. Color? backgroundColor,
  9. Color? buttonTextColor,
  10. double? maxLongSide,
  11. double? maxShortSide,
  12. String? confirmText,
  13. String? cancelText,
  14. bool cancelButtonVisible = true,
})

Implementation

SelectionPickerDialog({
  this.title,
  required this.items,
  this.selectedItem,
  this.transformer,
  this.iconizer,
  this.headerColor,
  this.headerTextColor,
  this.backgroundColor,
  this.buttonTextColor,
  this.maxLongSide,
  this.maxShortSide,
  this.confirmText,
  this.cancelText,
  this.cancelButtonVisible = true,
});