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;
}