floatToInt8 property

int get floatToInt8

将浮点数转成 0 ~ 255 的整数(用于颜色处理)

Implementation

int get floatToInt8 => (this * 255.0).round().clamp(0, 255);