hex method

String hex(
  1. List<int> input
)

Process the byte array input and returns a hash in hexadecimal.

Implementation

@pragma('vm:prefer-inline')
String hex(List<int> input) => convert(input).hex();