RadioButton<T> constructor

const RadioButton<T>({
  1. required String label,
  2. required T groupValue,
  3. required T value,
  4. required void onChanged(
    1. T?
    ),
  5. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 5),
  6. Key? key,
})

Implementation

const RadioButton(
    {required this.label,
    required this.groupValue,
    required this.value,
    required this.onChanged,
    this.padding = const EdgeInsets.symmetric(horizontal: 5),
    Key? key})
    : super(key: key);