formFeed method

Future<bool> formFeed()

Skip to next of of the form

Implementation

Future<bool> formFeed() async {
  var params = {
    "printerId": _printerId,
    "printInfo": _printerInfo.toMap(),
  };

  final bool success = await _channel.invokeMethod("typeB-formFeed", params);
  return success;
}