static Uint8List color2Uint(int color) { return Uint8List.fromList([ color >> 16 & 0xff, color >> 8 & 0xff, color & 0xff, color >> 16 & 0xff ]); }