base32ZBaseDecode function

Uint8List base32ZBaseDecode(
  1. String input
)

Decodes input using base32ZBase decoding with Z-base alphabet.

Shorthand for base32ZBase.decode(input). Useful if a local variable shadows the global base32ZBase constant.

Implementation

Uint8List base32ZBaseDecode(String input) => base32ZBase.decode(input);