CheckboxGroup constructor

const CheckboxGroup({
  1. Key? key,
  2. required List<Checkbox> children,
  3. List<String> defaultValue = const [],
  4. bool disabled = false,
  5. String? name,
  6. List<CheckboxOption> options = const [],
  7. List<String> value = const [],
  8. void onChange(
    1. List<String> checkedValue
    )?,
})

Implementation

const CheckboxGroup({
  Key? key,
  required this.children,
  this.defaultValue = const [],
  this.disabled = false,
  this.name,
  this.options = const [],
  this.value = const [],
  this.onChange,
}) : super(key: key);