cutPaper static method

Future<String?> cutPaper()

Cuts the paper.

Returns a String indicating the result of the operation, or null.

Implementation

static Future<String?> cutPaper() async {
  return await SunmiPrinterPlusPlatform.instance.cutPaper();
}