XCheckBoxGroup constructor

XCheckBoxGroup({
  1. bool? radio,
  2. String? labelImg,
  3. double? labelImgSize,
  4. double? horizontal,
  5. double? vertical,
  6. required bool value,
  7. required Widget labelWidget,
  8. required XCheckBox child,
  9. required Function callback,
})

Implementation

XCheckBoxGroup({
  this.radio,
  this.labelImg,
  this.labelImgSize,
  this.horizontal,
  this.vertical,
  required this.value,
  required this.labelWidget,
  required this.child,
  required this.callback,
});