lineWrap method
Adds a specified number of blank lines to the print output.
times: The number of blank lines to insert.
Returns a String indicating the result or null if unsuccessful.
Implementation
Future<String?> lineWrap({required int times}) async {
return await SunmiPrinter.lineWrap(times);
}