doubleSha256Hex function

List<int> doubleSha256Hex(
  1. String raw
)

Implementation

List<int> doubleSha256Hex(String raw) {
  return sha256(sha256(hexDecode(raw)));
}