GSCheckBoxModel constructor

GSCheckBoxModel({
  1. dynamic type,
  2. dynamic tag,
  3. dynamic title,
  4. dynamic errorMessage,
  5. dynamic helpMessage,
  6. dynamic required,
  7. dynamic status,
  8. dynamic value,
  9. dynamic weight,
  10. dynamic showTitle,
  11. dynamic enableReadOnly,
  12. required List<CheckDataModel> items,
  13. required ValueChanged<CheckDataModel> callBack,
  14. RequiredCheckListEnum? requiredCheckListEnum,
  15. Widget? selectedIcon,
  16. Widget? unSelectedIcon,
  17. String? hint,
  18. bool? scrollable,
  19. double? height,
  20. Axis? scrollDirection,
  21. Color? scrollBarColor,
  22. bool? showScrollBar,
  23. required bool searchable,
  24. String? searchHint,
  25. Icon? searchIcon,
  26. BoxDecoration? searchBoxDecoration,
})

Implementation

GSCheckBoxModel({
  type,
  tag,
  title,
  errorMessage,
  helpMessage,
  required,
  status,
  value,
  weight,
  showTitle,
  enableReadOnly,
  required this.items,
  required this.callBack,
  this.requiredCheckListEnum,
  this.selectedIcon,
  this.unSelectedIcon,
  this.hint,
  this.scrollable,
  this.height,
  this.scrollDirection,
  this.scrollBarColor,
  this.showScrollBar,
  required this.searchable,
  this.searchHint,
  this.searchIcon,
  this.searchBoxDecoration,
}) : super(
        type: type,
        tag: tag,
        title: title,
        errorMessage: errorMessage,
        helpMessage: helpMessage,
        required: required,
        status: status,
        value: value,
        weight: weight,
        showTitle: showTitle,
        enableReadOnly: enableReadOnly,
      );