QueryLocalDomainResponse.deserialize constructor

QueryLocalDomainResponse.deserialize(
  1. List<int> bytes
)

Implementation

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