addressEquals static method
Implementation
static bool addressEquals(String a, String b) {
try {
final addrA = EthereumAddress.fromHex(a);
final addrB = EthereumAddress.fromHex(b);
return addrA == addrB;
} catch (_) {
return false;
}
}