toRGBA method

List<int> toRGBA()

get RGB with alpha

Implementation

List<int> toRGBA() {
  return [_color!.red, _color!.green, _color!.blue, _color!.alpha];
}