TCheckBoxGroup constructor

const TCheckBoxGroup({
  1. Key? key,
  2. required List<String> items,
  3. required ValueChanged<List<String>> onChanged,
  4. String? label,
  5. TextStyle? labelStyle,
  6. List<String>? initialValues,
  7. Color? activeColor,
  8. Color? inactiveColor,
  9. Color? borderColor,
  10. bool isEnabled = true,
})

Implementation

const TCheckBoxGroup({
  super.key,
  required this.items,
  required this.onChanged,
  this.label,
  this.labelStyle,
  this.initialValues,
  this.activeColor,
  this.inactiveColor,
  this.borderColor,
  this.isEnabled = true,
});