cutPaper method

Future<GertecResponse> cutPaper(
  1. CutPaperType type
)

Implementation

Future<GertecResponse> cutPaper(CutPaperType type) async {
  return GertecResponse.fromJson(
      await GertecPrinterPlatform.instance.cutPaper(type) ?? '{}');
}