base32CrockfordEncode function

String base32CrockfordEncode(
  1. Uint8List input
)

Encodes input using base32Crockford encoding with Crockford alphabet.

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

Implementation

String base32CrockfordEncode(Uint8List input) => base32Crockford.encode(input);