RadioOptionProps<T> constructor

const RadioOptionProps<T>({
  1. required T value,
  2. required String label,
  3. String? description,
  4. bool disabled = false,
  5. Widget? icon,
})

Implementation

const RadioOptionProps({
  required this.value,
  required this.label,
  this.description,
  this.disabled = false,
  this.icon,
});