base32RfcHexEncode function

String base32RfcHexEncode(
  1. Uint8List input
)

Encodes input using base32RfcHex encoding.

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

Implementation

String base32RfcHexEncode(Uint8List input) => base32RfcHex.encode(input);