hexdump property

String hexdump

Creates a hexdump of the Uint8List


Example:

0000000b48656c6c6f20576f726c64

Implementation

String get hexdump {
  String string = "";
  for (var i = 0; i < length; i++) {
    string += this[i].toRadixString(16).padLeft(2, "0");
  }
  return string;
}