尝试使用Function.apply()传递位置参数列表。但是为什么构造函数方法不适用于类Color?
var x = Function.apply(Color.fromARGB, [255, 66, 165, 245]);
Error Message: The getter 'fromARGB' isn't defined for the class 'Color'.
这是构造函数。
const Color.fromARGB(int a, int r, int g, int b) :
value = (((a & 0xff) << 24) |
((r & 0xff) << 16) |
((g & 0xff) << 8) |
((b & 0xff) << 0)) & 0xFFFFFFFF;