ContextMenuTile constructor

const ContextMenuTile({
  1. Key? key,
  2. required String label,
  3. void onPressed(
    1. BuildContext context
    )?,
  4. SvgData asset = SvgIcons.videoMessage,
  5. bool? pinned,
  6. Widget? trailing,
})

Implementation

const ContextMenuTile({
  super.key,
  required this.label,
  this.onPressed,
  this.asset = SvgIcons.videoMessage,
  this.pinned,
  this.trailing,
});