Hash constructor
Implementation
factory Hash({
HashType? hashType,
$core.List<$core.int>? hash,
}) {
final result = create();
if (hashType != null) {
result.hashType = hashType;
}
if (hash != null) {
result.hash = hash;
}
return result;
}