strip0x property

String strip0x

Remove Ox from any string

Implementation

String get strip0x {
  if (startsWith('0x', 0)) {
    return substring(2);
  }
  return this;
}