Hash constructor

Hash({
  1. Hash_HashType? type,
  2. 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;
}