zero property
inherited
The zero, or minimum, value for the pixel format.
This value typically represents transparent and/or empty (black) pixels.
Example
print(abgr8888.zero); // 0x00000000
print(floatRgba.zero); // [0.0, 0.0, 0.0, 0.0]
Implementation
@override
@nonVirtual
int get zero => 0x0;