contentHash property

FlowContentHash get contentHash

Domain-separated SHA-256 hash of canonicalBytes.

Implementation

FlowContentHash get contentHash {
  return FlowContentHash.compute([
    ...utf8.encode(_flowExperimentHashDomain),
    ...canonicalBytes,
  ]);
}