LiveRadioGroup<T> constructor

const LiveRadioGroup<T>({
  1. Key? key,
  2. MutableCell<T?>? groupValue,
  3. required Widget child,
})

Implementation

const LiveRadioGroup({
  super.key,
  this.groupValue,
  required this.child,
});