decodeAsHexString method Null safety

String decodeAsHexString(
  1. String base32
)

Takes in a base32 string and decodes it back to a String in hex format.

Implementation

static String decodeAsHexString(String base32) {
  return _hexEncode(decode(base32));
}