encodeHexString method Null safety
Takes in a hex
string, converts the string to a byte list
and runs a normal encode() on it. Returning a String representation
of the base32.
Implementation
static String encodeHexString(String b32hex,
{Encoding encoding = Encoding.standardRFC4648}) {
return encode(_hexDecode(b32hex), encoding: encoding);
}