feed method

  1. @override
Future<bool?> feed()
override

feed() asynchronously makes the connected printer print one empty label and returns a Boolean value afterwards with the result of the feed operation(i.e. success or failure).

Implementation

@override
Future<bool?> feed() async {
  bool? fed = await methodChannel.invokeMethod<bool>('feed');
  return fed;
}