SelectionPickerDialog constructor

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

Implementation

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