MultiCBox constructor

MultiCBox({
  1. Key? key,
  2. required List list,
  3. required int crossAxisCount,
  4. required dynamic onChanged(
    1. List SelectedValues
    ),
  5. double? mainAxisSpacing,
  6. double? rowSpaces,
  7. double? columnSpaces,
  8. double? crossAxisSpacing,
  9. int? maxNumber,
  10. AlignmentGeometry? childAlignment,
  11. DecorationImage? childBackGroundimage,
  12. BoxBorder? childBorder,
  13. List<BoxShadow>? childBoxShadow,
  14. double? childCircularRadius,
  15. Color? childColor,
  16. Gradient? childGradient,
  17. required double childHeight,
  18. double? childWidth,
  19. EdgeInsetsGeometry? childPadding,
  20. TextAlign? textAlign,
  21. Color? textColor,
  22. String? textFontFamily,
  23. double? textFontSize,
  24. FontWeight? textFontWeight,
  25. bool? Scroll,
})

Implementation

MultiCBox(
    {super.key,
    required this.list,
    required this.crossAxisCount,
    required this.onChanged,
    this.mainAxisSpacing,
    this.rowSpaces,
    this.columnSpaces,
    this.crossAxisSpacing,
    this.maxNumber,
    this.childAlignment,
    this.childBackGroundimage,
    this.childBorder,
    this.childBoxShadow,
    this.childCircularRadius,
    this.childColor,
    this.childGradient,
    required this.childHeight,
    this.childWidth,
    this.childPadding,
    this.textAlign,
    this.textColor,
    this.textFontFamily,
    this.textFontSize,
    this.textFontWeight,
    this.Scroll});