hexDecode static method

Digest hexDecode(
  1. String hexValue
)

Decodes a string that contains a hexidecimal value into a digest.

Implementation

static Digest hexDecode(String hexValue) => Digest(hex.decode(hexValue));