CommandButton constructor
CommandButton({})
Implementation
CommandButton({
super.key,
required this.command,
String? label,
IconData? icon,
this.args,
this.iconOnly=true
}) {
this.label = label ?? command.label;
this.icon = icon ?? command.icon;
}