isStyleProperty static method

bool isStyleProperty(
  1. String propName
)

Helper method to check if a property is a style property

Implementation

static bool isStyleProperty(String propName) {
  return all.contains(propName);
}