DropDownData constructor

const DropDownData({
  1. Key? key,
  2. Widget? childButton,
  3. required List<DataDropDown> listData,
  4. String? tooltip,
  5. String title = "",
  6. String value = "",
  7. String uuidValue = "",
  8. List<String>? uuidValues,
  9. bool addFirstEmpty = false,
  10. bool viewNumber = false,
  11. bool selection = true,
  12. required dynamic selectionCallback(
    1. DataDropDown
    ),
  13. bool research = false,
  14. dynamic researchCallback(
    1. String
    )?,
})

Implementation

const DropDownData({
  Key? key,
  this.childButton,
  required this.listData,
  this.tooltip,
  this.title = "",
  this.value = "",
  this.uuidValue = "",
  this.uuidValues,
  this.addFirstEmpty = false,
  this.viewNumber = false,
  this.selection = true,
  required this.selectionCallback,
  this.research = false,
  this.researchCallback,
}) : super(key: key);