cssText method

String cssText()

Implementation

String cssText() {
  switch (this) {
    case CSSBackgroundRepeatType.repeat:
      return 'repeat';
    case CSSBackgroundRepeatType.repeatX:
      return 'repeat-x';
    case CSSBackgroundRepeatType.repeatY:
      return 'repeat-y';
    case CSSBackgroundRepeatType.noRepeat:
      return 'no-repeat';
  }
}