hex method

String hex([
  1. bool upper = false
])

The message digest as a hexadecimal string.

Parameters:

  • If upper is true, the string will be in uppercase alphabets.

Implementation

String hex([bool upper = false]) => toHex(bytes, upper: upper);