decodeAsString method Null safety
- String base32
Takes in a base32
string and decodes it back to a String.
Implementation
static String decodeAsString(String base32) {
return decode(base32)
.toList()
.map((charCode) => String.fromCharCode(charCode))
.join();
}