mapperAttachmentBackgroundCSS function

String mapperAttachmentBackgroundCSS(
  1. BackgroundAttachmentCSS value
)

Implementation

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