isZeroAddress static method

bool isZeroAddress(
  1. String address
)

Checks if an address is the zero address (used for revocations).

Implementation

static bool isZeroAddress(String address) {
  return address.toLowerCase() == zeroAddress.toLowerCase();
}