max property
inherited
The maximum value for the pixel format.
This value typically represents opaque and/or full (white) pixels.
Example
print(abgr8888.max); // 0xFFFFFFFF
print(floatRgba.max); // [1.0, 1.0, 1.0, 1.0]
Implementation
@override
@nonVirtual
int get max => 0xFFFFFFFF;