MenuRadio<T> constructor

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

Implementation

const MenuRadio({
  super.key,
  required this.value,
  required this.child,
  this.trailing,
  this.focusNode,
  this.enabled = true,
  this.autoClose = true,
});