ContextMenuInterceptor constructor

ContextMenuInterceptor({
  1. Key? key,
  2. EdgeInsets margin = EdgeInsets.zero,
  3. required Widget child,
  4. bool enabled = true,
  5. bool debug = false,
})

Implementation

ContextMenuInterceptor({
  super.key,
  EdgeInsets margin = EdgeInsets.zero,
  required this.child,
  bool enabled = true,
  bool debug = false,
});