CupertinoPopoverMenuItem constructor

const CupertinoPopoverMenuItem({
  1. Widget? leading,
  2. required Widget child,
  3. BoolCallback? onTap,
  4. Color background = Colors.white,
  5. Color activeBackground = const Color(0xFFd9d9d9),
  6. bool isTapClosePopover = true,
})

Implementation

const CupertinoPopoverMenuItem(
    {this.leading,
    required this.child,
    this.onTap,
    this.background = Colors.white,
    this.activeBackground = const Color(0xFFd9d9d9),
    this.isTapClosePopover = true});