base32ZBaseEncode function

String base32ZBaseEncode(
  1. Uint8List input
)

Encodes input using base32ZBase encoding with Z-base alphabet.

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

Implementation

String base32ZBaseEncode(Uint8List input) => base32ZBase.encode(input);