TDCheckboxGroup constructor

const TDCheckboxGroup({
  1. required Widget child,
  2. Key? key,
  3. OnGroupChange? onChangeGroup,
  4. TDCheckboxGroupController? controller,
  5. List<String>? checkedIds,
  6. int? maxChecked,
  7. int? titleMaxLine,
  8. ContentBuilder? customContentBuilder,
  9. TDContentDirection? contentDirection,
  10. TDCheckboxStyle? style,
  11. double? spacing,
  12. IconBuilder? customIconBuilder,
  13. VoidCallback? onOverloadChecked,
})

Implementation

const TDCheckboxGroup(
    {required this.child,
      Key? key,
      this.onChangeGroup,
      this.controller,
      this.checkedIds,
      this.maxChecked,
      this.titleMaxLine,
      this.customContentBuilder,
      this.contentDirection,
      this.style,
      this.spacing,
      this.customIconBuilder,
      this.onOverloadChecked}) : super(key: key);