CardAction constructor

const CardAction({
  1. required String id,
  2. String? label,
  3. TextStyle? labelStyle,
  4. IconData? icon,
  5. Color? iconColor,
  6. double? iconSize,
  7. String? tooltip,
  8. dynamic data,
})

Implementation

const CardAction({
  required this.id,
  this.label,
  this.labelStyle,
  this.icon,
  this.iconColor,
  this.iconSize,
  this.tooltip,
  this.data,
});