RadioPickerDialog constructor

RadioPickerDialog({
  1. String? title,
  2. required List<String> items,
  3. required List<String> values,
  4. String? initialValue,
  5. Color? headerColor,
  6. Color? headerTextColor,
  7. Color? backgroundColor,
  8. Color? buttonTextColor,
  9. double? maxLongSide,
  10. double? maxShortSide,
  11. String? confirmText,
  12. String? cancelText,
})

Implementation

RadioPickerDialog({
  this.title,
  required this.items,
  required this.values,
  this.initialValue,
  this.headerColor,
  this.headerTextColor,
  this.backgroundColor,
  this.buttonTextColor,
  this.maxLongSide,
  this.maxShortSide,
  this.confirmText,
  this.cancelText,
});