lineWrap static method

Future<void> lineWrap({
  1. int lines = 1,
})

Set the line warping. Move the printing to a nex line Default it moves to 1 line but you can set lines you wantlines

Implementation

static Future<void> lineWrap({int lines = 1}) async {
  await _channel.invokeMethod("lineWrap", <String, dynamic>{
    "lines": lines,
  });
}