printQRCode method
Implementation
@override
Future<bool?> printQRCode(
{required String text, int width = 100, int height = 100}) async {
return await methodChannel.invokeMethod<bool>('printQrCode', {
'text': text,
"width": width,
"height": height,
});
}