GrockFocusMenuItem constructor

GrockFocusMenuItem({
  1. required String text,
  2. Widget? trailing,
  3. Widget? leading,
  4. Color? backgroundColor,
  5. TextStyle? textStyle,
  6. Widget? child,
  7. Function? onPressed,
})

Implementation

GrockFocusMenuItem({
  required this.text,
  this.trailing,
  this.leading,
  this.backgroundColor,
  this.textStyle,
  this.child,
  this.onPressed,
});