toShortString method

String toShortString()

Implementation

String toShortString() {
  String trimmed = _hexString.replaceAll(RegExp("^0x0*"), "");
  return "0x$trimmed";
}