disconnectWithoutForget method

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

disconnectWithoutForget() asynchronously disconnects from the currently connected printer and returns a Boolean value afterwards with the result of the disconnect operation (i.e. success or failure).

This will NOT clear the value of "LastConnectedPrinterName" internally.

Implementation

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