TUIRadioButton constructor

const TUIRadioButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. bool isSelected = false,
})

Implementation

const TUIRadioButton({
  super.key,
  this.onPressed,
  this.isSelected = false,
});