parseResponse method

  1. @override
Future<String?> parseResponse(
  1. List<int> bytes
)
override

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);
  }
}