VRadioGroup constructor

const VRadioGroup({
  1. Key? key,
  2. required List<RadioProps>? radios,
  3. Direction direction = Direction.HORIZATION,
  4. bool disable = false,
  5. String? defaultSelectName,
  6. bool isChangeContent = false,
  7. Function? change,
  8. double? fontSize,
  9. required String? selectColor,
})

Implementation

const VRadioGroup(
    {Key? key,
    required this.radios,
    this.direction = Direction.HORIZATION,
    this.disable = false,
    this.defaultSelectName,
    this.isChangeContent = false,
    this.change,
    this.fontSize,
    required this.selectColor})
    : super(key: key);