isValidBackgroundPositionValue static method
Implementation
static bool isValidBackgroundPositionValue(String value) {
return value == CENTER ||
value == LEFT ||
value == RIGHT ||
value == TOP ||
value == BOTTOM ||
CSSLength.isLength(value) ||
CSSPercentage.isPercentage(value);
}