toSha256 method

String toSha256()

Converts this schema type to a SHA-256 hash of its properties.

Implementation

String toSha256() {
  final buffer = toProperties();
  return sha256.convert(utf8.encode(jsonEncode(buffer))).toString();
}