ContextMenuCard constructor

const ContextMenuCard({
  1. Key? key,
  2. required List<Widget> children,
  3. BorderRadius? borderRadius,
  4. Color? bgColor,
  5. Border? border,
  6. List<BoxShadow>? shadows,
  7. EdgeInsets? padding,
})

Implementation

const ContextMenuCard(
    {Key? key, required this.children, this.borderRadius, this.bgColor, this.border, this.shadows, this.padding})
    : super(key: key);