hash_array function

Uint8List hash_array(
  1. List elements
)

@param {Array

Implementation

// ignore: non_constant_identifier_names
Uint8List hash_array(List elements) {
  return sha256Chunks(elements.map(hash_val).toList());
}