printWrapPaper method
Function to print wrap paper
Implementation
Future<bool> printWrapPaper(int lines) async {
try {
await channel.invokeMethod(PaymentTypeCall.printWrapPaper.method, {
"lines": lines,
});
return true;
} catch (e) {
return false;
}
}