RadioGroup constructor

RadioGroup({
  1. Key? key,
  2. String? shape,
  3. String? value,
  4. List<RadioItem>? list,
  5. bool? disabled,
  6. Color? checkedColor,
  7. bool inCellGroup = false,
  8. dynamic onChange(
    1. String? val
    )?,
  9. double? iconSize,
  10. Axis direction = Axis.vertical,
})

Implementation

RadioGroup(
    {Key? key,
    this.shape,
    this.value,
    this.list,
    this.disabled,
    this.checkedColor,
    this.inCellGroup: false,
    this.onChange,
    this.iconSize,
    this.direction: Axis.vertical})
    : super(key: key);