toSha256 method
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();
}
Converts this schema type to a SHA-256 hash of its properties.
String toSha256() {
final buffer = toProperties();
return sha256.convert(utf8.encode(jsonEncode(buffer))).toString();
}