toValue method
Implementation
String toValue() {
switch (this) {
case HashAlgorithm.sha1:
return 'SHA1';
case HashAlgorithm.sha256:
return 'SHA256';
}
}
String toValue() {
switch (this) {
case HashAlgorithm.sha1:
return 'SHA1';
case HashAlgorithm.sha256:
return 'SHA256';
}
}