startDiscovery method

Future<void> startDiscovery()

Starts the discovery process for available printers.

Discovers printers on the native platform and streams discovery events to listeners. This must be implemented by platform-specific classes.

Throws an UnimplementedError if the method is not implemented by the platform.

Implementation

Future<void> startDiscovery() {
  throw UnimplementedError('startDiscovery() has not been implemented.');
}