shouldAnimation method
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;
}