childRemoved method

  1. @override
void childRemoved(
  1. Component child
)
override

Implementation

@override
void childRemoved(Component child) {
  super.childRemoved(child);
  switch (child.coreType) {
    case NestedRemapAnimationBase.typeKey:
    case NestedSimpleAnimationBase.typeKey:
    case NestedStateMachineBase.typeKey:
      _animations.remove(child as NestedAnimation);

      break;
  }
}