encode static method

String encode(
  1. List<int> bytes, {
  2. bool prefix = false,
})

Implementation

static String encode(List<int> bytes, {bool prefix = false}) =>
    dw3_core.HexUtils.encode(Uint8List.fromList(bytes), prefix: prefix);