DTMultiCheckbox constructor
DTMultiCheckbox({})
Implementation
DTMultiCheckbox({
Key? key,
this.onSelected,
required this.onSelectedindex,
this.margin,
this.padding,
this.borderColor,
this.headingText,
this.borderWidth,
required this.values,
this.preSelected,
}) : super(key: key) {
dataModel = DTMultiCheckboxData(values: values, preselected: preSelected);
}