XDD<T> constructor

XDD<T>(
  1. List<T?>? items,
  2. T? initialValue,
  3. dynamic onChange(
    1. T?
    ), {
  4. String? label,
  5. bool isFlexible = true,
  6. double? width,
  7. TextStyle? label_Style,
  8. TextStyle? item_TextStyle(
    1. T?
    )?,
  9. Color? item_BackgroundColor,
  10. String? itemAsString(
    1. T?
    )?,
  11. bool? searchable,
  12. double fontSize_All = 28,
  13. Color backgroundColor = const Color.fromARGB(255, 27, 27, 27),
})

Implementation

XDD(
  this.items,
  this.initialValue,
  this.onChange, {
  this.label,
  this.isFlexible = true,
  this.width,
  this.label_Style,
  this.item_TextStyle,
  this.item_BackgroundColor,
  this.itemAsString,
  this.searchable,
  this.fontSize_All = 28,
  this.backgroundColor = const Color.fromARGB(255, 27, 27, 27),
}) : super() {}