setQrCodeErrorCorrectionLev method
Implementation
@override
Future<void> setQrCodeErrorCorrectionLev(
IminQrcodeCorrectionLevel level) async {
Map<String, dynamic> arguments = <String, dynamic>{
"level": level.level,
};
await methodChannel.invokeMethod<void>(
'setQrCodeErrorCorrectionLev', arguments);
}