isZero property
bool
get
isZero
Checks if this is the zero address.
Implementation
bool get isZero => bytes.every((b) => b == 0);
Checks if this is the zero address.
bool get isZero => bytes.every((b) => b == 0);