isEthereumAddress method

bool isEthereumAddress()

Ethereum Address

Reference: https://www.regextester.com/99711

Implementation

bool isEthereumAddress() => RegVal.hasMatch(
      this,
      RegexPattern.ethereumAddress,
    );