cssText property

String get cssText

Implementation

String get cssText {
  return toString();
}
set cssText (String value)

Implementation

set cssText(String value) {
  if (this is _CssStyleDeclaration) {
    (this as _CssStyleDeclaration)._parse(value);
  }
}