getPrinterPaper property

Future<String?> getPrinterPaper

Returns the printer paper type of the device if available.

Implementation

static Future<String?> get getPrinterPaper async {
  final String? paper = await _channel.invokeMethod('getPrinterPaper');
  return paper;
}