mapperAttachmentBackgroundCSS function
Implementation
String mapperAttachmentBackgroundCSS(BackgroundAttachmentCSS value) {
switch (value) {
case BackgroundAttachmentCSS.fixed:
return 'fixed';
case BackgroundAttachmentCSS.scroll:
return 'scroll';
case BackgroundAttachmentCSS.local:
return 'local';
}
}