WOIRadioButton constructor

const WOIRadioButton({
  1. Key? key,
  2. required bool isSelected,
  3. required ValueChanged<bool> onTap,
  4. Border? border,
  5. Border? selectedBorder,
  6. Color? selectedFillColor,
  7. double size = 25,
  8. EdgeInsets? innerPadding,
  9. Duration? duration,
  10. Color? backgroundColor,
})

Implementation

const WOIRadioButton({
  super.key,
  required this.isSelected,
  required this.onTap,
  this.border,
  this.selectedBorder,
  this.selectedFillColor,
  this.size = 25,
  this.innerPadding,
  this.duration,
  this.backgroundColor,
});