Hash constructor
Hash({
- Hash_HashType? type,
- List<
int> ? value,
Implementation
factory Hash({
Hash_HashType? type,
$core.List<$core.int>? value,
}) {
final $result = create();
if (type != null) {
$result.type = type;
}
if (value != null) {
$result.value = value;
}
return $result;
}