base16Decode function

Uint8List base16Decode(
  1. String input
)

Decodes input using base16 decoding.

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

Implementation

Uint8List base16Decode(String input) => base16.decode(input);