base32RfcEncode function

String base32RfcEncode(
  1. Uint8List input
)

Encodes input using base32Rfc encoding.

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

Implementation

String base32RfcEncode(Uint8List input) => base32Rfc.encode(input);