decodeAsHexString method Null safety
- String base32
Takes in a base32
string and decodes it back to a String in hex format.
Implementation
static String decodeAsHexString(String base32) {
return _hexEncode(decode(base32));
}
Takes in a base32
string and decodes it back to a String in hex format.
static String decodeAsHexString(String base32) {
return _hexEncode(decode(base32));
}