printQrCode method

Future<void> printQrCode(
  1. String code, {
  2. int unitSize = 5,
  3. QRErrLevel errLevel = QRErrLevel.L,
  4. PStringEncoding encoding = PStringEncoding.utf8,
})

Prints a QR code with the given code.

  • unitSize Size of the QR code units.
  • errLevel Error correction level.
  • encoding String encoding used.

Implementation

Future<void> printQrCode(
  String code, {
  int unitSize = 5,
  QRErrLevel errLevel = QRErrLevel.L,
  PStringEncoding encoding = PStringEncoding.utf8,
}) {
  throw UnimplementedError('printQrCode() has not been implemented.');
}