cutCreate static method

Widget cutCreate({
  1. required VoidCallback? onPressed,
  2. double? width,
})

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,
  );
}