CardActionButton constructor

const CardActionButton({
  1. Key? key,
  2. required Icon icon,
  3. required String label,
  4. required VoidCallback onPress,
  5. bool closeCardWhenPress = false,
  6. MouseCursor? cursor,
})

Implementation

const CardActionButton({
  super.key,
  required this.icon,
  required this.label,
  required this.onPress,
  this.closeCardWhenPress = false,
  this.cursor,
});