cutPaper method

Future<String?> cutPaper()

Cuts the paper after printing.

Returns a String indicating the result or null if unsuccessful.

Implementation

Future<String?> cutPaper() async {
  return await SunmiPrinter.cutPaper();
}