base32CrockfordDecode function

Uint8List base32CrockfordDecode(
  1. String input
)

Decodes input using base32Crockford decoding with Crockford alphabet.

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

Implementation

Uint8List base32CrockfordDecode(String input) => base32Crockford.decode(input);