listOfACDRadioButton method
Implementation
ACDDialog listOfACDRadioButton({
List<ACDRadioItem>? items,
double? height,
Color? color,
Color? activeColor,
int? initialValue,
Function(int)? onClickItemListener,
}) {
Size size = MediaQuery.of(context!).size;
return widget(
Container(
height: height,
constraints: BoxConstraints(
minHeight: size.height * .1,
minWidth: size.width * .1,
maxHeight: size.height * .5,
),
child: ACDRadioListTile(
items: items,
initialValue: initialValue,
color: color,
activeColor: activeColor,
onChanged: onClickItemListener,
),
),
);
}