address property

  1. @override
EthereumAddress address
override

The ethereum address belonging to this credential.

Implementation

@override
EthereumAddress get address {
  return _cachedAddress ??=
      EthereumAddress(publicKeyToAddress(privateKeyToPublic(privateKeyInt)));
}