shouldLogTransitionForProp static method

bool shouldLogTransitionForProp(
  1. String property
)

Implementation

static bool shouldLogTransitionForProp(String property) {
  if (!enableCssVarAndTransitionLogs) return false;
  if (watchedTransitionProperties.isEmpty) return true;
  return watchedTransitionProperties.contains(property);
}