GSRadioModel constructor
GSRadioModel({
- dynamic type,
- dynamic tag,
- dynamic title,
- dynamic errorMessage,
- dynamic helpMessage,
- dynamic required,
- dynamic status,
- dynamic value,
- dynamic weight,
- dynamic showTitle,
- required List<
RadioDataModel> items, - required ValueChanged<
RadioDataModel> callBack, - Widget? selectedIcon,
- Widget? unSelectedIcon,
- String? hint,
- bool? scrollable,
- double? height,
- Axis? scrollDirection,
- Color? scrollBarColor,
- bool? showScrollBar,
- required bool searchable,
- String? searchHint,
- Icon? searchIcon,
- 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,
);