isValidBackgroundAttachmentValue static method
Implementation
static bool isValidBackgroundAttachmentValue(String value) {
// Support all standard attachment keywords: scroll | fixed | local
return value == SCROLL || value == LOCAL || value == FIXED;
}