cssText method

String cssText()

Implementation

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