connectToWifiPrinter method

Future<bool?> connectToWifiPrinter(
  1. String? printer
)

connectToWifiPrinter(String) attempts to connect to a printer via Wi-Fi whose name is passed into the method. This is asynchronous and returns a Boolean value afterwards with the result of the connection (i.e. success or failure).

Implementation

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