base32 method
The message digest as a Base-32 string.
If upper is true, the output will have uppercase alphabets.
If padding is true, the output will have = padding at the end.
Implementation
String base32({bool upper = true, bool padding = true}) =>
toBase32(bytes, lower: !upper, padding: padding);