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