parseResponse method
Implementation
@override
Future<String?> parseResponse(List<int> bytes) async {
try {
var result = await methodChannel.invokeMethod<String?>(
METHOD_PARSE_RESPONSE, bytes);
return result;
} on PlatformException catch (e) {
throw _libException(e);
}
}