base32RfcDecode function

Uint8List base32RfcDecode(
  1. String input
)

Decodes input using base32Rfc decoding.

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

Implementation

Uint8List base32RfcDecode(String input) => base32Rfc.decode(input);