parserPro0x19 method
Implementation
@override
Future<dynamic> parserPro0x19(Uint8List bytes) async {
try {
if (Platform.isAndroid) {
return await methodChannel.invokeMethod('parserPro0x19', bytes);
} else {
var back = (await methodChannel.invokeMapMethod("DeCodeWithInputData", bytes));
return back;
}
} catch (e) {
// print("e:$e");
return null;
}
}