CustomRadioButton<T> constructor

CustomRadioButton<T>({
  1. String? value,
  2. String? groupValue,
  3. ValueChanged<String>? onChanged,
  4. double? width = 22,
  5. double? height = 22,
})

Implementation

CustomRadioButton({
  this.value,
  this.groupValue,
  this.onChanged,
  this.width = 22,
  this.height = 22,
});