printQRcode method

Future printQRcode(
  1. String textToQR,
  2. int width,
  3. int height,
  4. int align,
)

printQRcode(String textToQR, int width, int height, int align)

Implementation

Future<dynamic> printQRcode(
        String textToQR, int width, int height, int align) =>
    _channel.invokeMethod('printQRcode', {
      'textToQR': textToQR,
      'width': width,
      'height': height,
      'align': align
    });