RadioCore constructor
const
RadioCore({
- Key? key,
- required int radioIndex,
- bool disable = false,
- bool isSelected = false,
- EdgeInsets? iconPadding,
- Widget? child,
- bool childOnRight = true,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- MainAxisSize mainAxisSize = MainAxisSize.min,
- Image? selectedImage,
- Image? unselectedImage,
- Image? disSelectedImage,
- Image? disUnselectedImage,
- VoidCallback? onRadioItemClick,
- HitTestBehavior behavior = HitTestBehavior.translucent,
Implementation
const RadioCore(
{Key? key,
required this.radioIndex,
this.disable = false,
this.isSelected = false,
this.iconPadding,
this.child,
this.childOnRight = true,
this.mainAxisAlignment = MainAxisAlignment.start,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.mainAxisSize = MainAxisSize.min,
this.selectedImage,
this.unselectedImage,
this.disSelectedImage,
this.disUnselectedImage,
this.onRadioItemClick,
this.behavior = HitTestBehavior.translucent})
: super(key: key);