CupertinoContextMenu constructor
Create a context menu.
The actions parameter cannot be empty.
Implementation
CupertinoContextMenu({
super.key,
required this.actions,
required Widget this.child,
this.enableHapticFeedback = false,
}) : assert(actions.isNotEmpty),
builder = ((BuildContext context, Animation<double> animation) => child);