XDDGeneric constructor

XDDGeneric({
  1. Key? key,
  2. Color? backGroundColor,
  3. Color? menu_backGroundColor,
  4. Color? items_backGroundColor,
  5. double? items_Height,
  6. List<String>? filterItems,
  7. String? filterValue,
  8. dynamic onChangeDD(
    1. Object?
    )?,
  9. String? hintText,
  10. EdgeInsets? padding,
  11. Color? items_TextColor,
})

Implementation

XDDGeneric({
  Key? key,
  this.backGroundColor,
  this.menu_backGroundColor,
  this.items_backGroundColor,
  this.items_Height,
  this.filterItems,
  this.filterValue,
  this.onChangeDD,
  this.hintText,
  this.padding,
  this.items_TextColor,
}) : super(key: key);