base32RfcHexDecode function

Uint8List base32RfcHexDecode(
  1. String input
)

Decodes input using base32RfcHex decoding.

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

Implementation

Uint8List base32RfcHexDecode(String input) => base32RfcHex.decode(input);