QueryAnalyzeCodeResponse.deserialize constructor
Implementation
factory QueryAnalyzeCodeResponse.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryAnalyzeCodeResponse(
hasIbcEntryPoints: decode.getBool<bool?>(1),
requiredFeatures: decode.getString<String?>(2),
);
}