isInheritedPropertyString function

bool isInheritedPropertyString(
  1. String property
)

Implementation

bool isInheritedPropertyString(String property) {
  CSSPropertyID? id = CSSPropertyNameMap[property];
  if (id == null) {
    return false;
  }
  return isInheritedPropertyID(id);
}