printDocument method
Invokes the system's print service to print the current document.
example:
await document.printDocument();
Implementation
Future<void> printDocument() async {
await _channel.invokeMethod('print');
}
Invokes the system's print service to print the current document.
example:
await document.printDocument();
Future<void> printDocument() async {
await _channel.invokeMethod('print');
}