disconnectPrinter method

Future<bool?> disconnectPrinter()

Closes the active printer connection.

Returns true on success. Throws a String description on error.

Implementation

Future<bool?> disconnectPrinter() {
  return _repository.disconnectPrinter();
}