IosContextMenuAction constructor

const IosContextMenuAction({
  1. required String id,
  2. required String title,
  3. String? iconSystemName,
  4. String? iconAssetPath,
  5. bool showTrailingCheckmark = false,
  6. bool destructive = false,
  7. bool enabled = true,
})

Implementation

const IosContextMenuAction({
  required this.id,
  required this.title,
  this.iconSystemName,
  this.iconAssetPath,
  this.showTrailingCheckmark = false,
  this.destructive = false,
  this.enabled = true,
});