QURadioItem constructor

const QURadioItem({
  1. Key? key,
  2. required dynamic groupValue,
  3. required dynamic value,
  4. required String label,
  5. bool inlineLayout = true,
  6. bool disabled = false,
  7. required dynamic onChanged(
    1. dynamic
    ),
})

Implementation

const QURadioItem(
    {Key? key,
    required this.groupValue,
    required this.value,
    required this.label,
    this.inlineLayout = true,
    this.disabled = false,
    required this.onChanged})
    : super(key: key);