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