SmartRadioButton<T> constructor

const SmartRadioButton<T>({
  1. required T value,
  2. required T? groupValue,
  3. Key? key,
  4. VoidCallback? onPressed,
  5. SmartRadioButtonTheme? theme,
})

Implementation

const SmartRadioButton({
  required this.value,
  required this.groupValue,
  super.key,
  this.onPressed,
  this.theme,
});