rgbaHexString property

String rgbaHexString

Converts the character into a #RGBA hex string.

Implementation

String get rgbaHexString => '#${_get2CharHex(r)}${_get2CharHex(g)}'
    '${_get2CharHex(b)}${_get2CharHex(a)}';