decodeFromHexString method

String decodeFromHexString()

Decodes from hex string

Throws FormatException if not a valid hex string

Implementation

String decodeFromHexString(){
  return utf8.decode(HEX.decode(this));
}