GenericContextMenu constructor

const GenericContextMenu({
  1. Key? key,
  2. required List<ContextMenuButtonConfig?> buttonConfigs,
  3. bool injectDividers = false,
  4. bool autoClose = true,
  5. ContextMenuButtonStyle? buttonStyle,
})

Implementation

const GenericContextMenu({
  Key? key,
  required this.buttonConfigs,
  this.injectDividers = false,
  this.autoClose = true,
  this.buttonStyle,
}) : super(key: key);