FdcGridButton constructor

const FdcGridButton({
  1. String? id,
  2. bool visible = true,
  3. FdcGridItemPlacement placement = FdcGridItemPlacement.end,
  4. required IconData icon,
  5. String? label,
  6. String? tooltip,
  7. VoidCallback? onPressed,
})

Creates a FdcGridButton.

Implementation

const FdcGridButton({
  super.id,
  super.visible,
  super.placement,
  required this.icon,
  this.label,
  this.tooltip,
  this.onPressed,
});