parseWithOutputs static method

ParsedQueryMessage parseWithOutputs(
  1. Uint8List data, {
  2. bool lazyStrings = false,
})

Implementation

static ParsedQueryMessage parseWithOutputs(
  Uint8List data, {
  bool lazyStrings = false,
}) {
  final previousLazy = binaryProtocolLazyStringsActive;
  setBinaryProtocolLazyStrings(active: lazyStrings);
  try {
    return _parseWithOutputsInternal(data);
  } finally {
    setBinaryProtocolLazyStrings(active: previousLazy);
  }
}