feed method

Future<int> feed(
  1. int lines
)

*feed

Jump n lines

Implementation

Future<int> feed(int lines) async {
  int? feed =
      await platform?.invokeMethod('feedLine', {'lines': lines}) ?? 9999;
  if (feed < 0) {
    throw ElginException(feed);
  }
  return feed;
}