lineWrap static method
Adds a specified number of blank lines to the print output.
times
: The number of blank lines to add.
Returns a String indicating the result of the operation, or null
.
Implementation
static Future<String?> lineWrap(int times) async {
return await SunmiPrinterPlusPlatform.instance.lineWrap(times);
}