parserPro0x18 method

  1. @override
Future parserPro0x18(
  1. Uint8List bytes
)
override

Implementation

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