ContextMenuArea constructor

const ContextMenuArea({
  1. Key? key,
  2. required Widget child,
  3. required ContextMenuBuilder builder,
  4. double verticalPadding = 8,
  5. double width = 320,
})

Implementation

const ContextMenuArea({
  Key? key,
  required this.child,
  required this.builder,
  this.verticalPadding = 8,
  this.width = 320,
}) : super(key: key);