value property

  1. @override
int get value
override

A 32 bit value representing this color.

This getter is a stub. It is recommended instead to use the explicit toARGB32 method.

Implementation

@override
int get value =>
    ((alpha & 0xff) << 24) |
    ((red & 0xff) << 16) |
    ((green & 0xff) << 8) |
    ((blue & 0xff) << 0);