paperOut method

Future<int?> paperOut()

Checks if the printer is out of paper.

Returns an int where 0 indicates paper is present, any other value signifies paper is out, or null if the operation fails.

Implementation

Future<int?> paperOut() {
  return instance.paperOut();
}