isValidEthereumAddress static method

bool isValidEthereumAddress(
  1. String address
)

Implementation

static bool isValidEthereumAddress(String address) {
  return EthereumAddress.isValid(address);
}