getTypeGuid static method

Guid getTypeGuid(
  1. String typeName
)

Implementation

static Guid getTypeGuid(String typeName) {
  var tn = DC.stringToBytes(typeName);
  var hash = SHA256.compute(tn).clip(0, 16);
  return new Guid(hash);
}