QueryGetHostZoneRequest.deserialize constructor

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

Implementation

factory QueryGetHostZoneRequest.deserialize(List<int> bytes) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QueryGetHostZoneRequest(chainId: decode.getString<String?>(1));
}