actionChip method
Implementation
ActionChip actionChip(VoidCallback? onPressed, {Color? color, double paddingX = 8, double elevation = 3}) {
return ActionChip(label: text(color: color).paddings(hor: paddingX), elevation: elevation, onPressed: onPressed);
}