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