shouldAnimation method

bool shouldAnimation(
  1. List<String> properties
)
inherited

Implementation

bool shouldAnimation(List<String> properties) {
  if (renderBoxModel != null) {
    bool shouldAnimation = false;
    if (properties.any((element) => element.startsWith('animation'))) {
      shouldAnimation = true;
    }
    return shouldAnimation;
  }
  return false;
}