CkRadioGroup constructor

const CkRadioGroup({
  1. required Map<String, String> options,
  2. Key? key,
  3. String? initialKey,
  4. ValueChanged<String>? onChanged,
  5. Axis direction = Axis.horizontal,
  6. bool horizontalScrollable = true,
  7. double itemSpacing = 12.0,
  8. TextStyle? textStyle,
  9. EdgeInsets? padding,
  10. Color? selectedColor,
  11. Color? unSelectedColor,
  12. double iconSize = 22.0,
})

Implementation

const CkRadioGroup({
  required this.options,
  super.key,
  this.initialKey,
  this.onChanged,
  this.direction = Axis.horizontal,
  this.horizontalScrollable = true,
  this.itemSpacing = 12.0,
  this.textStyle,
  this.padding,
  this.selectedColor,
  this.unSelectedColor,
  this.iconSize = 22.0,
});