isZero property

bool get isZero

Checks if this is the zero address.

Implementation

bool get isZero => bytes.every((b) => b == 0);