printQrCode method

Future<bool> printQrCode({
  1. required String data,
  2. int width = 200,
  3. int height = 200,
  4. bool showText = true,
  5. int fontSize = 16,
  6. int align = 1,
  7. int paperWidth = 52,
  8. bool isLabel = false,
  9. bool tear = true,
})

Print QR code

Implementation

Future<bool> printQrCode({
  required String data,
  int width = 200,
  int height = 200,
  bool showText = true,
  int fontSize = 16,
  int align = 1,
  int paperWidth = 52,
  bool isLabel = false,
  bool tear = true,
}) {
  throw UnimplementedError('printQrCode() has not been implemented.');
}