RadialMenuItem<T> constructor

const RadialMenuItem<T>({
  1. required Widget child,
  2. Key? key,
  3. T? value,
  4. String? tooltip,
  5. Color? backgroundColor,
  6. double? size = _defaultButtonSize,
  7. Color? iconColor,
})

Implementation

const RadialMenuItem({
  required this.child,
  super.key,
  this.value,
  this.tooltip,
  this.backgroundColor,
  this.size = _defaultButtonSize,
  this.iconColor,
});