FdcRowAction constructor

const FdcRowAction({
  1. required IconData icon,
  2. String? tooltip,
  3. FdcRowActionCallback? onPressed,
  4. FdcRowActionPredicate? enabled,
  5. FdcRowActionPredicate? visible,
  6. bool activateRowOnPressed = true,
  7. Color? color,
  8. Color? disabledColor,
})

Creates a FdcRowAction.

Implementation

const FdcRowAction({
  required this.icon,
  this.tooltip,
  this.onPressed,
  this.enabled,
  this.visible,
  this.activateRowOnPressed = true,
  this.color,
  this.disabledColor,
}) : _deleteAction = false;