cutPaper method

  1. @override
Future<void> cutPaper(
  1. PaperCutMode m,
  2. int n
)
override

Implementation

@override
Future<void> cutPaper(PaperCutMode m, int n) async {
  await methodChannel.invokeMethod<void>('cutPaper', <String, dynamic>{
    'm': m.index,
    'n': n,
  });
}