cssText method
Implementation
String cssText() {
switch (this) {
case CSSBackgroundAttachmentType.scroll:
return 'scroll';
case CSSBackgroundAttachmentType.fixed:
return 'fixed';
case CSSBackgroundAttachmentType.local:
return 'local';
}
}