hexEncode method Null safety
- Uint8List bytes
Encodes bytes to hex
Implementation
static String hexEncode(Uint8List bytes) =>
bytes.map((e) => e.toRadixString(16).padLeft(2, '0')).join();
Encodes bytes to hex
static String hexEncode(Uint8List bytes) =>
bytes.map((e) => e.toRadixString(16).padLeft(2, '0')).join();