isValidBackgroundAttachmentValue static method

bool isValidBackgroundAttachmentValue(
  1. String value
)

Implementation

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