QueryLocalMessageVersionResponse.deserialize constructor
Implementation
factory QueryLocalMessageVersionResponse.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryLocalMessageVersionResponse(version: decode.getInt<int?>(1));
}