hex function

String hex(
  1. List<int> b
)

Implementation

String hex(List<int> b) => b.map((e) => e.toRadixString(16).padLeft(2, '0')).join(' ');