print static method

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

Implementation

static Widget print({
  required VoidCallback? onPressed,
  double? width,
}) {
  return CustomActionButton(
    text: 'Print',
    onPressed: onPressed,
    underlinedChar: 'P',
    icon: Icons.print,
    borderColor: Colors.green,
    textColor: Colors.green,
    width: width,
  );
}