CheckboxGroup constructor

CheckboxGroup({
  1. Key? key,
  2. List<String?>? values,
  3. String? shape,
  4. List<CheckItem>? list,
  5. int max = 9999,
  6. dynamic onChange(
    1. List<String?>? value
    )?,
  7. bool inCellGroup = false,
  8. bool? disabled,
  9. Color? checkedColor,
  10. double? iconSize,
})

Implementation

CheckboxGroup(
    {Key? key,
    this.values,
    this.shape,
    this.list,
    this.max: 9999,
    this.onChange,
    this.inCellGroup: false,
    this.disabled,
    this.checkedColor,
    this.iconSize})
    : super(key: key);