GRadioGroup<T> constructor

const GRadioGroup<T>({
  1. Key? key,
  2. double spacing = 0.0,
  3. double runSpacing = 0.0,
  4. required T? value,
  5. required List<T> items,
  6. required ValueChanged<T?>? onChanged,
  7. Widget builder(
    1. T item
    )?,
})

Implementation

const GRadioGroup({
  Key? key,
  this.spacing = 0.0,
  this.runSpacing = 0.0,
  required this.value,
  required this.items,
  required this.onChanged,
  this.builder,
}) : super(key: key);