mapperRepeatImageCSS function

String mapperRepeatImageCSS(
  1. TypeRepeatCSS value
)

Implementation

String mapperRepeatImageCSS(TypeRepeatCSS value) {
  switch (value) {
    case TypeRepeatCSS.noRepeat:
      return 'no-repeat';
    case TypeRepeatCSS.repeat:
      return 'repeat';
    case TypeRepeatCSS.space:
      return 'space';
    case TypeRepeatCSS.round:
      return 'round';
  }
}