hexValue function

int hexValue()

return a 16 radix int, example: 4285062059.

Apply to 'Color' constructor for flutter.

Implementation

int hexValue() {
  return int.parse(hex(), radix: 16);
}