hexAlpha property

String hexAlpha

Return color's uppercase RGB hex string, including alpha channel.

Implementation

String get hexAlpha {
  return value.toRadixString(16).toUpperCase().padLeft(8, '0');
}