doubleSha256 function

List<int> doubleSha256(
  1. dynamic raw
)

Implementation

List<int> doubleSha256(raw) {
  return sha256(sha256(raw));
}