base32 method

String base32({
  1. bool upper = true,
  2. bool padding = true,
})

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);