animationName property

String? animationName

Implementation

String? get animationName => _animationName;
void animationName=(String? value)

Implementation

set animationName(String? value) {
  if (value != _animationName) {
    _animationName = value;
    _updateAnimation();
  }
}