hex property

String get hex

Implementation

String get hex {
  StringBuffer sb = StringBuffer();
  for (int byte in this) {
    sb.write(byte.toRadixString(16).padLeft(2, '0'));
  }
  return sb.toString();
}