cssText method

String cssText()

Implementation

String cssText() {
  var result = toStringAsFixed(6);
  if (result.endsWith('.000000') == true) {
    result = result.replaceAll('.000000', '');
  }
  return result;
}