encodeHexString method Null safety
- String b32hex
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) {
return encode(_hexDecode(b32hex));
}