RadioItem<T> constructor

const RadioItem<T>({
  1. Key? key,
  2. Widget? leading,
  3. Widget? trailing,
  4. required T value,
  5. bool enabled = true,
  6. FocusNode? focusNode,
})

Implementation

const RadioItem({
  super.key,
  this.leading,
  this.trailing,
  required this.value,
  this.enabled = true,
  this.focusNode,
});