getHexString method

String getHexString([
  1. String colorSpace = SRGBColorSpace
])

Implementation

String getHexString([String colorSpace = SRGBColorSpace]) {
  String str = '000000${getHex().toRadixString(16)}';
  return str.substring(str.length - 6);
}