mapperRepeatImageCSS function
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';
}
}