printQrcode method
Implementation
Future<GertecResponse> printQrcode(
{int width = 100, int height = 100, required String text}) async {
return GertecResponse.fromJson(await GertecPrinterPlatform.instance
.printQrcode(width: width, height: height, text: text) ??
'{}');
}