GfMultiCheckbox constructor
GfMultiCheckbox({})
Implementation
GfMultiCheckbox({
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 = GfMultiCheckboxData(values: values, preselected: preSelected);
}