ActionButton constructor
ActionButton({
- required String label,
- bool isSelected = false,
- bool isDisabled = false,
- CmdCallback? onTap,
- Color? background,
- Color? selectedBackground,
- Color? foreground,
- Color? selectedForeground,
- EdgeInsets? padding,
- Key? key,
Implementation
ActionButton({
required this.label,
this.isSelected = false,
this.isDisabled = false,
this.onTap,
this.background,
this.selectedBackground,
this.foreground,
this.selectedForeground,
this.padding,
super.key,
});