hexEip55 property

String hexEip55

Returns this address in a hexadecimal representation, like with hex. The hexadecimal characters A-F in the address will be in lower- or uppercase depending on EIP 55.

Implementation

String get hexEip55 {
  // https://eips.ethereum.org/EIPS/eip-55#implementation

  final eip55 = toChecksumAddress(hexNo0x);
  return '0x$eip55';
}