DialogSelectItem<T> constructor

const DialogSelectItem<T>({
  1. required String label,
  2. T? value,
  3. String? description,
  4. String? footer,
  5. String? category,
  6. bool isCurrent = false,
  7. bool isDisabled = false,
  8. Color? background,
})

Implementation

const DialogSelectItem({
  required this.label,
  this.value,
  this.description,
  this.footer,
  this.category,
  this.isCurrent = false,
  this.isDisabled = false,
  this.background,
});