RadioPickerDialog<T> constructor

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

Implementation

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