MiniRadio<T> constructor

const MiniRadio<T>({
  1. Key? key,
  2. required T value,
  3. required T? groupValue,
  4. ValueChanged<T>? onChanged,
  5. String? label,
  6. bool disabled = false,
})

Implementation

const MiniRadio({
  super.key,
  required this.value,
  required this.groupValue,
  this.onChanged,
  this.label,
  this.disabled = false,
});