cutCreate static method
Implementation
static Widget cutCreate({
required VoidCallback? onPressed,
double? width,
}) {
return CustomActionButton(
text: 'Cut Create',
onPressed: onPressed,
underlinedChar: 'C',
icon: Icons.print,
borderColor: Colors.green,
textColor: Colors.green,
width: width,
);
}