GSRadioModel constructor

GSRadioModel({
  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. required List<RadioDataModel> items,
  12. required ValueChanged<RadioDataModel> callBack,
  13. Widget? selectedIcon,
  14. Widget? unSelectedIcon,
  15. String? hint,
  16. bool? scrollable,
  17. double? height,
  18. Axis? scrollDirection,
  19. Color? scrollBarColor,
  20. bool? showScrollBar,
  21. required bool searchable,
  22. String? searchHint,
  23. Icon? searchIcon,
  24. BoxDecoration? searchBoxDecoration,
})

Implementation

GSRadioModel(
    {type,
    tag,
    title,
    errorMessage,
    helpMessage,
    required,
    status,
    value,
    weight,
    showTitle,
    required this.items,
    required this.callBack,
    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,
      );