cut method

Future<bool?> cut()

cut() asynchronously makes the connected printer perform a cut operation (this can be called right after feed() for testing purposes) and returns a Boolean value afterwards with the result of the cut operation (i.e. success or failure).

Implementation

Future<bool?> cut() {
  throw UnimplementedError('cut() has not been implemented.');
}