MaterialRadio constructor

const MaterialRadio({
  1. Key? key,
  2. Color? color,
  3. Color? selectColor,
  4. double? radius,
  5. required void onChange(
    1. bool
    ),
  6. double? size,
  7. bool? disenabled,
})

Implementation

const MaterialRadio(
    {Key? key,
    this.color,
    this.selectColor,
    this.radius,
    required this.onChange,
    this.size,
    this.disenabled})
    : super(key: key);